Skip to content

Commit

Permalink
Disable default features of dev-dependencies to fix build errors on n…
Browse files Browse the repository at this point in the history
…o-std targets

Annoying consequence of still using Cargo resolver v1 instead of v2
  • Loading branch information
rlee287 committed Oct 31, 2023
1 parent a76e29f commit 5e53ed9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions committing-aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ digest = { version = "0.10.7", features = ["mac"] }
hmac = { version = "0.12.1" }

[dev-dependencies]
aes-gcm = { path = "../aes-gcm", version = "0.10.3" }
chacha20poly1305 = { path = "../chacha20poly1305", version = "0.10.1" }
aes-gcm = { path = "../aes-gcm", version = "0.10.3", default-features = false, features = ["aes"] }
chacha20poly1305 = { path = "../chacha20poly1305", version = "0.10.1", default-features = false }
# Don't use hex-literal v0.4 to reduce multiple dependency version duplication
hex-literal = "0.3.4"
sha2 = "0.10.8"
sha2 = { version = "0.10.8", default-features = false }

[features]
default = ["std"]
Expand Down

0 comments on commit 5e53ed9

Please sign in to comment.