[package] name = "frost-core" edition = "2021" # When releasing to crates.io: # - Update CHANGELOG.md # - Create git tag. version = "0.6.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", "threshold", "signature", "schnorr"] description = "Types and traits to support implementing Flexible Round-Optimized Schnorr Threshold signature schemes (FROST)." [package.metadata.docs.rs] features = ["nightly"] [dependencies] byteorder = "1.4" debugless-unwrap = "0.0.4" derive-getters = "0.3.0" hex = "0.4.3" rand_core = "0.6" serde = { version = "1.0.160", features = ["derive"], optional = true } serdect = { version = "0.2.0", optional = true } thiserror = "1.0" visibility = "0.0.1" zeroize = { version = "1.5.4", default-features = false, features = ["derive"] } itertools = "0.11.0" # Test dependencies used with the test-impl feature proptest = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true } criterion = { version = "0.5", optional = true } [dev-dependencies] lazy_static = "1.4" proptest = "1.0" rand = "0.8" rand_chacha = "0.3" serde_json = "1.0" [features] nightly = [] default = [] internals = [] serde = ["dep:serde", "dep:serdect"] # Exposes ciphersuite-generic tests for other crates to use test-impl = ["proptest", "serde_json", "criterion"] [lib] bench = false