# 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" rust-version = "1.65" name = "ironfish-reddsa" version = "0.1.0" authors = [ "Henry de Valence ", "Deirdre Connolly ", "Chelsea Komlo ", "Jack Grigg ", "Conrado Gouvea ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A standalone implementation of the RedDSA signature scheme." readme = "README.md" keywords = [ "cryptography", "crypto", "zcash", ] categories = [ "cryptography", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/iron-fish/reddsa" [package.metadata.docs.rs] features = ["nightly"] [lib] name = "ironfish_reddsa" path = "src/lib.rs" [[test]] name = "batch" path = "tests/batch.rs" [[test]] name = "bincode" path = "tests/bincode.rs" [[test]] name = "frost_redjubjub" path = "tests/frost_redjubjub.rs" [[test]] name = "frost_redpallas" path = "tests/frost_redpallas.rs" [[test]] name = "librustzcash_vectors" path = "tests/librustzcash_vectors.rs" [[test]] name = "proptests" path = "tests/proptests.rs" [[test]] name = "smallorder" path = "tests/smallorder.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.blake2b_simd] version = "1" default-features = false [dependencies.byteorder] version = "1.5" default-features = false [dependencies.frost-rerandomized] version = "2.0.0-rc.0" features = [ "serialization", "cheater-detection", ] optional = true default-features = false [dependencies.group] version = "0.13" default-features = false [dependencies.hex] version = "0.4" features = ["alloc"] optional = true default-features = false [dependencies.jubjub] version = "0.10" default-features = false [dependencies.pasta_curves] version = "0.5" default-features = false [dependencies.rand_core] version = "0.6" default-features = false [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.thiserror] version = "1.0" optional = true [dependencies.zeroize] version = "1" features = ["zeroize_derive"] optional = true [dev-dependencies.bincode] version = "1" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.frost-rerandomized] version = "2.0.0-rc.0" features = ["test-impl"] [dev-dependencies.hex] version = "0.4.3" [dev-dependencies.lazy_static] version = "1.5" [dev-dependencies.num-bigint] version = "0.4.6" [dev-dependencies.num-traits] version = "0.2.19" [dev-dependencies.pasta_curves] version = "0.5" features = ["alloc"] default-features = false [dev-dependencies.proptest] version = "1.5" [dev-dependencies.proptest-derive] version = "0.4" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3" [dev-dependencies.serde_json] version = "1.0" [features] alloc = ["hex"] default = ["std"] frost = [ "frost-rerandomized", "alloc", ] nightly = [] serde = [ "dep:serde", "frost-rerandomized?/serde", ] std = [ "blake2b_simd/std", "thiserror", "zeroize", "alloc", "frost-rerandomized?/std", "serde", ]