# 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 = "poseidon-merkle" version = "0.7.0" authors = [ "Eduardo Leegwater Simões ", "Moana Marcello ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Crate implementing Dusk Network's Merkle tree with the poseidon hash function" readme = "README.md" keywords = [ "tree", "merkle", "poseidon", "data", "structure", ] categories = [ "data-structures", "no-std", ] license = "MPL-2.0" repository = "https://github.com/dusk-network/merkle" [lib] name = "poseidon_merkle" path = "src/lib.rs" [[example]] name = "zk" path = "examples/zk.rs" required-features = ["zk"] [[test]] name = "zk" path = "tests/zk.rs" required-features = ["zk"] [[bench]] name = "poseidon" path = "benches/poseidon.rs" harness = false [[bench]] name = "zk" path = "benches/zk.rs" 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-merkle] version = "0.5" [dependencies.dusk-plonk] version = "0.20" optional = true default-features = false [dependencies.dusk-poseidon] version = "0.40" [dependencies.rkyv] version = "0.7" optional = true default-features = false [dev-dependencies.criterion] version = "0.3" [dev-dependencies.ff] version = "0.13" default-features = false [dev-dependencies.rand] version = "0.8" [features] rkyv-impl = [ "rkyv/validation", "rkyv/alloc", "rkyv", "bytecheck", "dusk-bls12_381/rkyv-impl", "dusk-merkle/rkyv-impl", ] size_16 = ["rkyv/size_16"] size_32 = ["rkyv/size_32"] size_64 = ["rkyv/size_64"] zk = [ "dusk-plonk/alloc", "dusk-poseidon/zk", ]