# 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.81" name = "dsa" version = "0.7.0-pre.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the Digital Signature Algorithm (DSA) as specified in FIPS 186-4 (Digital Signature Standard), providing RFC6979 deterministic signatures as well as support for added entropy """ homepage = "https://github.com/RustCrypto/signatures/tree/master/dsa" readme = "README.md" keywords = [ "crypto", "nist", "signature", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/signatures" [lib] name = "dsa" path = "src/lib.rs" [[example]] name = "export" path = "examples/export.rs" [[example]] name = "generate" path = "examples/generate.rs" [[example]] name = "sign" path = "examples/sign.rs" [[test]] name = "components" path = "tests/components.rs" [[test]] name = "deterministic" path = "tests/deterministic.rs" [[test]] name = "signature" path = "tests/signature.rs" [[test]] name = "signing_key" path = "tests/signing_key.rs" [[test]] name = "verifying_key" path = "tests/verifying_key.rs" [dependencies.digest] version = "=0.11.0-pre.9" [dependencies.num-bigint] version = "0.8" features = [ "prime", "rand", "zeroize", ] default-features = false package = "num-bigint-dig" [dependencies.num-traits] version = "0.2" default-features = false [dependencies.pkcs8] version = "0.11.0-rc.1" features = ["alloc"] default-features = false [dependencies.rfc6979] version = "=0.5.0-pre.4" [dependencies.sha2] version = "=0.11.0-pre.4" default-features = false [dependencies.signature] version = "=2.3.0-pre.4" features = [ "alloc", "digest", "rand_core", ] default-features = false [dependencies.zeroize] version = "1" default-features = false [dev-dependencies.pkcs8] version = "0.11.0-rc.1" features = ["pem"] default-features = false [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3" [dev-dependencies.sha1] version = "=0.11.0-pre.4" [features] std = []