# 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.72" name = "ed25519" version = "2.3.0-pre.0" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032) support library providing signature type definitions and PKCS#8 private key decoding/encoding support """ homepage = "https://github.com/RustCrypto/signatures/tree/master/ed25519" documentation = "https://docs.rs/ed25519" readme = "README.md" keywords = [ "crypto", "curve25519", "ecc", "signature", "signing", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/signatures" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "ed25519" path = "src/lib.rs" [[test]] name = "hex" path = "tests/hex.rs" [[test]] name = "pkcs8" path = "tests/pkcs8.rs" [[test]] name = "serde" path = "tests/serde.rs" [dependencies.pkcs8] version = "0.11.0-rc.0" optional = true [dependencies.serde] version = "1" optional = true default-features = false [dependencies.serde_bytes] version = "0.11" optional = true [dependencies.signature] version = "=2.3.0-pre.4" default-features = false [dependencies.zeroize] version = "1" optional = true default-features = false [dev-dependencies.bincode] version = "1" [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.rand_core] version = "0.6" features = ["std"] [features] alloc = ["pkcs8?/alloc"] default = ["std"] pem = [ "alloc", "pkcs8/pem", ] serde_bytes = [ "serde", "dep:serde_bytes", ] std = [ "pkcs8?/std", "signature/std", ]