mirror of
https://github.com/RustCrypto/signatures
synced 2026-06-21 13:45:42 +00:00
a8c7206efe
The changes in #1360 were breaking, so this release bumps the minor version. It might be possible to get some additional breaking changes in as well, if we can land RustCrypto/crypto-bigint#1266.
55 lines
2.1 KiB
TOML
55 lines
2.1 KiB
TOML
[package]
|
|
name = "ecdsa"
|
|
version = "0.17.0-rc.18"
|
|
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
|
|
"""
|
|
authors = ["RustCrypto Developers"]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://github.com/RustCrypto/signatures/tree/master/ecdsa"
|
|
repository = "https://github.com/RustCrypto/signatures"
|
|
readme = "README.md"
|
|
categories = ["cryptography", "no-std"]
|
|
keywords = ["crypto", "ecc", "nist", "secp256k1", "signature"]
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
|
|
[dependencies]
|
|
elliptic-curve = { version = "0.14.0-rc.33", default-features = false, features = ["sec1"] }
|
|
signature = { version = "3", default-features = false, features = ["rand_core"] }
|
|
zeroize = { version = "1.5", default-features = false }
|
|
|
|
# optional dependencies
|
|
der = { version = "0.8", optional = true }
|
|
digest = { version = "0.11", optional = true, default-features = false, features = ["oid"] }
|
|
rfc6979 = { version = "=0.6.0-pre.0", optional = true }
|
|
serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }
|
|
sha2 = { version = "0.11", optional = true, default-features = false, features = ["oid"] }
|
|
spki = { version = "0.8", optional = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
elliptic-curve = { version = "0.14.0-rc.33", default-features = false, features = ["dev"] }
|
|
hex-literal = "1"
|
|
sha2 = { version = "0.11", default-features = false }
|
|
|
|
[features]
|
|
default = ["digest"]
|
|
alloc = ["elliptic-curve/alloc", "signature/alloc", "spki/alloc"]
|
|
std = ["alloc", "elliptic-curve/std"]
|
|
|
|
algorithm = ["dep:rfc6979", "digest", "elliptic-curve/arithmetic", "hazmat"]
|
|
dev = ["algorithm", "digest/dev", "elliptic-curve/dev"]
|
|
der = ["dep:der"]
|
|
digest = ["dep:digest", "elliptic-curve/digest", "signature/digest"]
|
|
getrandom = ["elliptic-curve/getrandom"]
|
|
hazmat = []
|
|
pkcs8 = ["der", "digest", "elliptic-curve/pkcs8"]
|
|
pem = ["elliptic-curve/pem", "pkcs8"]
|
|
serde = ["dep:serdect", "elliptic-curve/serde", "pkcs8"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|