Skip to content

Commit 6cdcbc6

Browse files
committed
noise-rust-crypto: disable default features on chacha20poly1305
This dep switched its default features in RustCrypto/AEADs@d6f510e, enabling `getrandom`, which is not compatible with all targets. This crate does not rely on it.
1 parent 1023238 commit 6cdcbc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noise-rust-crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use-sha2 = ["sha2"]
2020
[dependencies]
2121
x25519-dalek = { version = "2.0.0", optional = true, default-features = false }
2222
aes-gcm = { version = "0.10.3", features = ["aes"], default-features = false, optional = true }
23-
chacha20poly1305 = { version = "0.10.1", optional = true }
23+
chacha20poly1305 = { version = "0.10.1", default-features = false, optional = true }
2424
blake2 = { version = "0.10.6", optional = true }
2525
sha2 = { version = "0.10.8", optional = true, default-features = false }
2626
zeroize = { version = "1", default-features = false }

0 commit comments

Comments
 (0)