blob: 33ab306bfcb0efe5618c21db39fa0f9198a8934e [file] [log] [blame]
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.56"
name = "ecdsa"
version = "0.13.4"
authors = ["RustCrypto Developers"]
description = "Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm\n(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard)\n"
readme = "README.md"
keywords = ["crypto", "ecc", "nist", "secp256k1", "signature"]
categories = ["cryptography", "no-std"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/signatures/tree/master/ecdsa"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies.der]
version = "0.5"
optional = true
[dependencies.elliptic-curve]
version = "0.11.6"
features = ["sec1"]
default-features = false
[dependencies.rfc6979]
version = "0.1"
optional = true
[dependencies.signature]
version = ">= 1.3.1, <1.5"
features = ["rand-preview"]
default-features = false
[dev-dependencies.elliptic-curve]
version = "0.11.6"
features = ["dev"]
default-features = false
[dev-dependencies.hex-literal]
version = "0.3"
[dev-dependencies.sha2]
version = "0.9"
default-features = false
[features]
alloc = []
arithmetic = ["elliptic-curve/arithmetic"]
default = ["digest"]
dev = ["arithmetic", "digest", "elliptic-curve/dev", "hazmat"]
digest = ["signature/digest-preview"]
hazmat = []
pem = ["elliptic-curve/pem", "pkcs8"]
pkcs8 = ["elliptic-curve/pkcs8", "der"]
serde = ["elliptic-curve/serde"]
sign = ["arithmetic", "digest", "hazmat", "rfc6979"]
std = ["alloc", "elliptic-curve/std", "signature/std"]
verify = ["arithmetic", "digest", "hazmat"]