signature 2.0.0-pre.2

Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)
Documentation
[package]
name          = "signature"
description   = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
version       = "2.0.0-pre.2"
authors       = ["RustCrypto Developers"]
license       = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/signature"
repository    = "https://github.com/RustCrypto/traits/tree/master/signature"
readme        = "README.md"
edition       = "2021"
rust-version  = "1.56"
keywords      = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories    = ["cryptography", "no-std"]

[dependencies]
digest = { version = "0.10.3", optional = true, default-features = false }
rand_core = { version = "0.6.4", optional = true, default-features = false }
derive = { package = "signature_derive", version = "=2.0.0-pre.0", optional = true, path = "derive" }

[dev-dependencies]
hex-literal = "0.3"
sha2 = { version = "0.10", default-features = false }

[features]
alloc = []
std = ["alloc"]

# Preview features are unstable and exempt from semver.
# See https://docs.rs/signature/latest/signature/#unstable-features for more information.
digest-preview = ["digest"]
rand-preview = ["rand_core"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]