[package] name = "frost-ed448" edition = "2021" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag. version = "0.1.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea " ] readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/ZcashFoundation/frost" categories = ["cryptography"] keywords = ["cryptography", "crypto", "ristretto", "threshold", "signature"] description = "A Schnorr signature scheme over the prime-order Ristretto group that supports FROST ." [package.metadata.docs.rs] features = ["nightly"] [dependencies] # Pointing to a commit after 0.8.3 with the required functions for FROST. # TODO: update after a release is made ed448-goldilocks = { git = "https://github.com/crate-crypto/Ed448-Goldilocks.git", rev = "54ffc6b8f14030688996da50a1bfb7bb713eb172" } frost-core = { path = "../frost-core", features = ["test-impl"] } rand_core = "0.6" sha3 = "0.10.6" [dev-dependencies] bincode = "1" criterion = "0.4" lazy_static = "1.4" hex = "0.4.3" proptest = "1.0" proptest-derive = "0.3" rand = "0.8" rand_chacha = "0.3" serde_json = "1.0" [features] nightly = [] default = [] [lib] # Disables non-criterion benchmark which is not used; prevents errors # when using criterion-specific flags bench = false [[bench]] name = "bench" harness = false