Cargo Features

[dependencies]
ed25519-dalek-blake3 = { version = "1.0.11", default-features = false, features = ["std", "alloc", "nightly", "serde", "batch", "batch_deterministic", "legacy_compatibility", "u64_backend", "u32_backend", "simd_backend"] }
default = rand, std, u64_backend

These default features are set whenever ed25519-dalek-blake3 is added without default-features = false somewhere in the dependency tree.

std default

Enables std of curve25519-dalek ^3.2.0, ed25519 ^1.5.0, rand, and serde

rand:

Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.

Affects batch::verify_batch

alloc

Enables alloc of curve25519-dalek ^3.2.0, rand, and zeroize

rand:

Option: "alloc" enables support for Vec and Box when not using "std"

Affects batch::verify_batch

nightly

Enables nightly of curve25519-dalek ^3.2.0

serde = serde_bytes, serde_crate

Enables serde of ed25519 ^1.5.0

batch = merlin, rand

Affects batch::verify_batch

batch_deterministic = merlin, rand, rand_core

This feature enables deterministic batch verification.

Affects batch::verify_batch

legacy_compatibility

This features turns off stricter checking for scalar malleability in signatures

u64_backend default

Enables u64_backend of curve25519-dalek ^3.2.0

u32_backend

Enables u32_backend of curve25519-dalek ^3.2.0

simd_backend

Enables simd_backend of curve25519-dalek ^3.2.0

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

merlin batch? batch_deterministic?
rand default alloc? batch? batch_deterministic? std
rand_core batch_deterministic?
serde_crate serde? std

Enables serde

serde_bytes serde?