blob: 62a5410a5ca8a4556bef057d6888ba4457046d05 [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.57"
name = "ecdsa"
version = "0.14.8"
authors = ["RustCrypto Developers"]
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing
RFC6979 deterministic signatures as well as support for added entropy
"""
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"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[dependencies.der]
version = "0.6"
optional = true
[dependencies.elliptic-curve]
version = "0.12"
features = [
"digest",
"sec1",
]
default-features = false
[dependencies.rfc6979]
version = "0.3"
optional = true
[dependencies.serdect]
version = "0.1"
features = ["alloc"]
optional = true
default-features = false
[dependencies.signature]
version = ">=1.6.2, <1.7"
features = [
"hazmat-preview",
"rand-preview",
]
default-features = false
[dev-dependencies.elliptic-curve]
version = "0.12"
features = ["dev"]
default-features = false
[dev-dependencies.hex-literal]
version = "0.3"
[dev-dependencies.sha2]
version = "0.10"
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",
"serdect",
]
sign = [
"arithmetic",
"digest",
"hazmat",
"rfc6979",
]
std = [
"alloc",
"elliptic-curve/std",
"signature/std",
]
verify = [
"arithmetic",
"digest",
"hazmat",
]