Skip to content

Commit

Permalink
Disable default-features for zeroize (#76)
Browse files Browse the repository at this point in the history
It was unintentionally linking liballoc
  • Loading branch information
tarcieri authored Jun 21, 2024
1 parent 58266a0 commit 0e93958
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 @@ -18,7 +18,7 @@ rust-version = "1.65"

[dependencies]
typenum = { version = "1.17", features = ["const-generics"] }
zeroize = { version = "1.8", optional = true }
zeroize = { version = "1.8", optional = true, default-features = false }

[features]
std = []
Expand Down

0 comments on commit 0e93958

Please sign in to comment.