mirror of
https://github.com/serai-dex/serai.git
synced 2025-04-22 14:08:17 +00:00
Correct no-std builds
This commit is contained in:
parent
05dc474cb3
commit
ae449535ff
2 changed files with 5 additions and 5 deletions
|
@ -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"]
|
||||
|
|
|
@ -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"] }
|
||||
|
||||
|
|
Loading…
Reference in a new issue