mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Enable serde/std if std is enabled.
* FIXES part of https://github.com/dalek-cryptography/ed25519-dalek/pull/107
This commit is contained in:
parent
2ed9fa932d
commit
3a9101933b
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ harness = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std", "u64_backend"]
|
default = ["std", "u64_backend"]
|
||||||
std = ["curve25519-dalek/std", "sha2/std", "rand/std"]
|
std = ["curve25519-dalek/std", "serde/std", "sha2/std", "rand/std"]
|
||||||
alloc = ["curve25519-dalek/alloc", "rand/alloc", "zeroize/alloc"]
|
alloc = ["curve25519-dalek/alloc", "rand/alloc", "zeroize/alloc"]
|
||||||
nightly = ["curve25519-dalek/nightly", "rand/nightly"]
|
nightly = ["curve25519-dalek/nightly", "rand/nightly"]
|
||||||
batch = ["merlin", "rand"]
|
batch = ["merlin", "rand"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue