Cargo Features

[dependencies]
signature-flow = { version = "1.0.0", default-features = false, features = ["std", "derive-preview", "digest-preview", "rand-preview"] }
default = std

The std feature is set by default whenever signature-flow is added without default-features = false somewhere in the dependency tree.

std default
derive-preview = digest-preview, signature_derive

Preview features are unstable and exempt from semver. See https://docs.rs/signature/latest/signature/#unstable-features for more information.

digest-preview derive-preview? = digest

Affects signature::PrehashSignature, signer::DigestSigner, verifier::DigestVerifier, signer::RandomizedDigestSigner

rand-preview = rand_core

Affects signer::RandomizedSigner, signer::RandomizedDigestSigner

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.

digest digest-preview?

Enables digest ^0.9

rand_core rand-preview?
signature_derive derive-preview?

Enables signature_derive =1.0.0-pre.3