Correct no-std builds

This commit is contained in:
Luke Parker 2023-10-31 07:55:25 -04:00
parent 05dc474cb3
commit ae449535ff
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions
coins/monero/generators
tests/no-std

View file

@ -21,8 +21,8 @@ sha3 = { version = "0.10", default-features = false }
curve25519-dalek = { version = "4", default-features = false, features = ["alloc", "zeroize", "precomputed-tables"] }
group = { version = "0.13", default-features = false }
dalek-ff-group = { path = "../../../crypto/dalek-ff-group", version = "0.4" }
dalek-ff-group = { path = "../../../crypto/dalek-ff-group", version = "0.4", default-features = false }
[features]
std = ["std-shims/std"]
std = ["std-shims/std", "subtle/std", "sha3/std", "dalek-ff-group/std"]
default = ["std"]

View file

@ -14,10 +14,10 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
flexible-transcript = { path = "../../crypto/transcript", features = ["recommended", "merlin"] }
flexible-transcript = { path = "../../crypto/transcript", default-features = false, features = ["recommended", "merlin"] }
dalek-ff-group = { path = "../../crypto/dalek-ff-group" }
minimal-ed448 = { path = "../../crypto/ed448" }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false }
minimal-ed448 = { path = "../../crypto/ed448", default-features = false }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["alloc", "secp256k1", "p256", "ed25519", "ristretto", "ed448"] }