[package] name = "frost-rerandomized" edition = "2021" # When releasing to crates.io: # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. version = "0.5.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", "threshold", "signature", "schnorr", "randomized"] description = "Types and traits to support implementing a re-randomized variant of Flexible Round-Optimized Schnorr Threshold signature schemes (FROST)." [package.metadata.docs.rs] features = ["nightly"] [dependencies] frost-core = { path = "../frost-core", version = "0.5.0", features = ["internals"] } rand_core = "0.6" [dev-dependencies] [features] nightly = [] default = [] # Exposes ciphersuite-generic tests for other crates to use test-impl = ["frost-core/test-impl"]