# 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-core" version = "2.0.0" authors = [ "Deirdre Connolly ", "Chelsea Komlo ", "Conrado Gouvea ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Types and traits to support implementing Flexible Round-Optimized Schnorr Threshold signature schemes (FROST)." readme = "README.md" keywords = [ "cryptography", "crypto", "threshold", "signature", "schnorr", ] 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_core" path = "src/lib.rs" bench = false [dependencies.byteorder] version = "1.4" default-features = false [dependencies.const-crc32] version = "1.2.0" package = "const-crc32-nostd" [dependencies.criterion] version = "0.5" optional = true [dependencies.debugless-unwrap] version = "0.0.4" [dependencies.derive-getters] version = "0.5.0" [dependencies.document-features] version = "0.2.7" [dependencies.hex] version = "0.4.3" features = ["alloc"] default-features = false [dependencies.itertools] version = "0.13.0" default-features = false [dependencies.postcard] version = "1.0.0" features = ["alloc"] optional = true [dependencies.proptest] version = "1.0" optional = true [dependencies.rand_core] version = "0.6" default-features = false [dependencies.serde] version = "1.0.160" features = ["derive"] optional = true default-features = false [dependencies.serde_json] version = "1.0" optional = true [dependencies.serdect] version = "0.2.0" optional = true [dependencies.thiserror] version = "1.0.29" optional = true default-features = false [dependencies.thiserror-nostd-notrait] version = "1.0.29" default-features = false [dependencies.visibility] version = "0.1.0" [dependencies.zeroize] version = "1.5.4" features = ["derive"] default-features = false [dev-dependencies.criterion] version = "0.5" [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 = [] default = [ "serialization", "cheater-detection", "std", ] internals = [] serde = [ "dep:serde", "dep:serdect", ] serialization = [ "serde", "dep:postcard", ] std = ["dep:thiserror"] test-impl = [ "dep:proptest", "dep:serde_json", "dep:criterion", ]