# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "ed25519-dalek-fiat" version = "0.1.0" authors = ["opensource+ed25519-dalek-fiat@fb.com", "Konstantinos Chalkias ", "François Garillot "] exclude = [".gitignore", "TESTVECTORS", "res/*"] description = "Fast and efficient ed25519 EdDSA key generations, signing, and verification in pure Rust." documentation = "https://docs.rs/ed25519-dalek-fiat" readme = "README.md" keywords = ["cryptography", "ed25519", "curve25519", "signature", "ECC"] categories = ["cryptography", "no-std"] license = "BSD-3-Clause" repository = "https://github.com/novifinancial/ed25519-dalek-fiat" [package.metadata.docs.rs] features = ["nightly", "batch"] [[bench]] name = "ed25519_benchmarks" harness = false [dependencies.curve25519-dalek-fiat] version = "0.1.0" default-features = false [dependencies.ed25519] version = "1" default-features = false [dependencies.merlin] version = "2" optional = true default-features = false [dependencies.rand] version = "0.8" optional = true default-features = false [dependencies.rand_core] version = "0.6" optional = true default-features = false [dependencies.serde_bytes] version = "0.11" optional = true [dependencies.serde_crate] version = "1.0" optional = true default-features = false package = "serde" [dependencies.sha2] version = "0.9" default-features = false [dependencies.zeroize] version = "1" features = ["zeroize_derive"] default-features = false [dev-dependencies.bincode] version = "1.0" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.hex] version = "^0.4" [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde_crate] version = "1.0" features = ["derive"] package = "serde" [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.toml] version = "0.5" [features] alloc = ["curve25519-dalek-fiat/alloc", "rand/alloc", "zeroize/alloc"] asm = ["sha2/asm"] batch = ["merlin", "rand"] batch_deterministic = ["merlin", "rand", "rand_core"] default = ["std", "rand", "u64_backend"] fiat_u64_backend = ["curve25519-dalek-fiat/fiat_u64_backend"] legacy_compatibility = [] nightly = ["curve25519-dalek-fiat/nightly"] serde = ["serde_crate", "serde_bytes", "ed25519/serde"] simd_backend = ["curve25519-dalek-fiat/simd_backend"] std = ["curve25519-dalek-fiat/std", "ed25519/std", "serde_crate/std", "sha2/std", "rand/std"] u32_backend = ["curve25519-dalek-fiat/u32_backend"] u64_backend = ["curve25519-dalek-fiat/u64_backend"]