Skip to content

Commit

Permalink
Merge pull request #58 from benma/chacha-no-default
Browse files Browse the repository at this point in the history
noise-rust-crypto: disable default features on chacha20poly1305
  • Loading branch information
blckngm committed Nov 14, 2023
2 parents 1023238 + 6cdcbc6 commit 9276c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noise-rust-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use-sha2 = ["sha2"]
[dependencies]
x25519-dalek = { version = "2.0.0", optional = true, default-features = false }
aes-gcm = { version = "0.10.3", features = ["aes"], default-features = false, optional = true }
chacha20poly1305 = { version = "0.10.1", optional = true }
chacha20poly1305 = { version = "0.10.1", default-features = false, optional = true }
blake2 = { version = "0.10.6", optional = true }
sha2 = { version = "0.10.8", optional = true, default-features = false }
zeroize = { version = "1", default-features = false }
Expand Down

0 comments on commit 9276c26

Please sign in to comment.