Skip to content

Commit

Permalink
Add use_std feature for itertools (#46)
Browse files Browse the repository at this point in the history
This PR enables the `use_std` feature for `iterools` when the `std` feature is enabled. This was not done in #30 when the dependency was added.
  • Loading branch information
AaronFeickert authored Jan 30, 2024
1 parent d493138 commit c286689
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 @@ -28,7 +28,7 @@ rand_core = { version = "0.6.4", default-features = false, features = ["getrando
default = ["rand", "serde", "std"]
rand = ["rand_core/getrandom"]
serde = ["dep:serde", "curve25519-dalek/serde", "zeroize/serde"]
std = ["blake3/std", "merlin/std", "rand_core/std", "serde?/std", "snafu/std", "subtle/std", "zeroize/std"]
std = ["blake3/std", "itertools/use_std", "merlin/std", "rand_core/std", "serde?/std", "snafu/std", "subtle/std", "zeroize/std"]

[[bench]]
name = "triptych"
Expand Down

0 comments on commit c286689

Please sign in to comment.