Cargo Features
[dependencies]
test-x25519-dalek = { version = "2.0.0-pre.2", default-features = false, features = ["alloc", "zeroize", "serde", "precomputed-tables", "reusable_secrets"] }
- default = alloc, precomputed-tables, zeroize
-
These default features are set whenever
test-x25519-dalek
is added without
somewhere in the dependency tree.default-features = false - alloc default
-
Enables alloc of curve25519-dalek, optional serde, and optional zeroize
serde:
Provide impls for types in the Rust core allocation and collections library including String, Box<T>, Vec<T>, and Cow<T>. This is a subset of std but may be enabled without depending on all of std.
- zeroize default
-
Enables zeroize, zeroize of curve25519-dalek
- serde
-
Enables serde, serde of curve25519-dalek
- precomputed-tables default
-
Enables precomputed-tables of curve25519-dalek
- reusable_secrets
-
Affects
x25519::ReusableSecret
…