# 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.60" name = "ed25519" version = "2.2.3" authors = ["RustCrypto Developers"] 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 """ 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/tree/master/ed25519" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.pkcs8] version = "0.10" optional = true [dependencies.serde] version = "1" optional = true default-features = false [dependencies.serde_bytes] version = "0.11" optional = true [dependencies.signature] version = "2" default-features = false [dependencies.zeroize] version = "1" optional = true default-features = false [dev-dependencies.bincode] version = "1" [dev-dependencies.ed25519-dalek] version = "2" features = ["rand_core"] [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.rand_core] version = "0.6" features = ["std"] [dev-dependencies.ring-compat] version = "0.8" features = ["signature"] default-features = false [features] alloc = ["pkcs8?/alloc"] default = ["std"] pem = [ "alloc", "pkcs8/pem", ] serde_bytes = [ "serde", "dep:serde_bytes", ] std = [ "pkcs8?/std", "signature/std", ]