# 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 = "jubjub-schnorr" version = "0.5.0" exclude = [ ".gitignore", "Cargo.lock", ".github/", ] description = "A pure-Rust implementation of Schnorr signatures with a PLONK circuit module additionally" readme = "README.md" keywords = [ "cryptography", "schnorr", "zk-snarks", "zero-knowledge", "signatures", ] categories = [ "algorithms", "cryptography", "mathematics", ] license = "MPL-2.0" repository = "https://github.com/dusk-network/jubjub-schnorr" [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "./katex-header.html", ] [[test]] name = "gadgets" path = "tests/gadgets.rs" required-features = ["zk"] [[bench]] name = "signature" harness = false required-features = ["zk"] [[bench]] name = "signature_double" harness = false required-features = ["zk"] [[bench]] name = "signature_var_generator" harness = false required-features = ["zk"] [dependencies.bytecheck] version = "0.6" optional = true default-features = false [dependencies.dusk-bls12_381] version = "0.13" default-features = false [dependencies.dusk-bytes] version = "0.1" [dependencies.dusk-jubjub] version = "0.14" features = ["zeroize"] default-features = false [dependencies.dusk-plonk] version = "0.20" features = ["alloc"] optional = true default-features = false [dependencies.dusk-poseidon] version = "0.40" [dependencies.ff] version = "0.13" default-features = false [dependencies.rand_core] version = "0.6" default-features = false [dependencies.rkyv] version = "0.7" optional = true default-features = false [dependencies.zeroize] version = "1" features = ["derive"] default-features = false [dev-dependencies.criterion] version = "0.3" [dev-dependencies.lazy_static] version = "1.4" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rkyv] version = "0.7" features = ["size_32"] default-features = false [features] alloc = [] rkyv-impl = [ "dusk-jubjub/rkyv-impl", "rkyv", "bytecheck", ] zk = [ "dusk-plonk", "dusk-poseidon/zk", ]