Skip to content

Commit 5d61524

Browse files
committed
disable unused crate features
1 parent de59d09 commit 5d61524

File tree

2 files changed

+9
-27
lines changed

2 files changed

+9
-27
lines changed

Cargo.lock

Lines changed: 0 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,32 @@ publish = false
88
[dependencies]
99
async-trait = "=0.1.89"
1010
color-eyre = "=0.6.5"
11-
crossterm = { version = "=0.28.1", features = [
11+
crossterm = { version = "=0.28.1", default-features = false, features = [
1212
"event-stream",
13+
"windows",
1314
], optional = true }
1415
dhat = { version = "=0.3.3", optional = true }
1516
dirs = "=6.0.0"
1617
fancy-regex = "=0.16.2"
1718
foldhash = "=0.2.0"
18-
futures = { version = "=0.3.31", optional = true }
19+
futures = { version = "=0.3.31", default-features = false, features = [
20+
"std",
21+
], optional = true }
1922
hickory-resolver = "=0.25.2"
2023
http = "=1.3.1"
2124
httpdate = "=1.0.3"
2225
itertools = "=0.14"
2326
log = { version = "=0.4.28", features = [
2427
"max_level_debug",
2528
"release_max_level_debug",
29+
"std",
2630
] }
2731
maxminddb = { version = "=0.26.0", features = ["mmap"] }
2832
parking_lot = "=0.12.5"
2933
rand = "=0.9.2"
30-
ratatui = { version = "=0.29.0", optional = true }
34+
ratatui = { version = "=0.29.0", default-features = false, features = [
35+
"crossterm",
36+
], optional = true }
3137
reqwest = { version = "=0.12.24", default-features = false, features = [
3238
"brotli",
3339
"charset",

0 commit comments

Comments
 (0)