# 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" name = "frost-p256" version = "2.0.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Schnorr signature scheme over the NIST P-256 curve that supports FROST." readme = "README.md" keywords = [ "cryptography", "crypto", "threshold", "signature", ] categories = ["cryptography"] license = "MIT OR Apache-2.0" repository = "https://github.com/ZcashFoundation/frost" [package.metadata.docs.rs] features = ["serde"] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "frost_p256" path = "src/lib.rs" bench = false [[test]] name = "rerandomized_tests" path = "tests/rerandomized_tests.rs" [[test]] name = "recreation_tests" path = "tests/recreation_tests.rs" [[test]] name = "serde_tests" path = "tests/serde_tests.rs" [[test]] name = "common_traits_tests" path = "tests/common_traits_tests.rs" [[test]] name = "serialization_tests" path = "tests/serialization_tests.rs" [[test]] name = "integration_tests" path = "tests/integration_tests.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.document-features] version = "0.2.7" [dependencies.frost-core] version = "2.0.0" default-features = false [dependencies.frost-rerandomized] version = "2.0.0" default-features = false [dependencies.p256] version = "0.13.0" features = ["hash2curve"] default-features = false [dependencies.rand_core] version = "0.6" [dependencies.sha2] version = "0.10.2" default-features = false [dev-dependencies.criterion] version = "0.5" [dev-dependencies.frost-core] version = "2.0.0" features = ["test-impl"] [dev-dependencies.frost-rerandomized] version = "2.0.0" features = ["test-impl"] [dev-dependencies.hex] version = "0.4.3" features = ["alloc"] default-features = false [dev-dependencies.insta] version = "1.31.0" features = ["yaml"] [dev-dependencies.lazy_static] version = "1.4" [dev-dependencies.proptest] version = "1.0" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3" [dev-dependencies.serde_json] version = "1.0" [features] cheater-detection = [ "frost-core/cheater-detection", "frost-rerandomized/cheater-detection", ] default = [ "serialization", "cheater-detection", "std", ] nightly = [] serde = ["frost-core/serde"] serialization = [ "serde", "frost-core/serialization", "frost-rerandomized/serialization", ] std = ["frost-core/std"]