Skip to content

Commit f80a711

Browse files
committed
disable unnecessary default features for dependencies
1 parent 90ca988 commit f80a711

File tree

2 files changed

+3
-37
lines changed

2 files changed

+3
-37
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@ keywords = ["bytes", "cache", "hash", "interning", "slice"]
77
description = "byte slice interning"
88
repository = "https://github.com/sweet-security/intern-mint"
99

10-
1110
[dependencies]
1211
ahash = "0.8.12"
1312
bstr = { version = "1.12.0", optional = true }
1413
databuf = { version = "0.5.0", optional = true }
15-
hashbrown = "0.15.4"
14+
hashbrown = { version = "0.15.4", default-features = false }
1615
parking_lot = "0.12.4"
1716
serde = { version = "1.0.219", optional = true }
18-
triomphe = "0.1.14"
17+
triomphe = { version = "0.1.14", default-features = false, features = ["std"] }
1918

2019
[dev-dependencies]
21-
serial_test = "3.2.0"
2220
serde_json = "1.0.140"
21+
serial_test = "3.2.0"
2322

2423
[features]
2524
default = []

0 commit comments

Comments
 (0)