Skip to content

Commit

Permalink
Drop dependency on ahash 0.7.7
Browse files Browse the repository at this point in the history
We used to have this (inverted) dependency structure:
ahash v0.7.7
└── hashbrown v0.12.3
    └── rkyv v0.7.44
        [dev-dependencies]
        └── hashbrown v0.14.3 (/home/ben/hashbrown)

rkyv's validation feature uses its alloc feature which uses hashbrown
0.12 with default features enabled, and one of those is ahash.
  • Loading branch information
saethlin committed Feb 10, 2024
1 parent 41eef7b commit 17b7658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fnv = "1.0.7"
serde_test = "1.0"
doc-comment = "0.3.1"
bumpalo = { version = "3.13.0", features = ["allocator-api2"] }
rkyv = { version = "0.7.42", features = ["validation"] }
rkyv = { version = "0.7.42", default-features = false, features = ["size_32"] }

[features]
default = ["ahash", "inline-more", "allocator-api2"]
Expand Down

0 comments on commit 17b7658

Please sign in to comment.