[package]
edition = "2021"
name = "zerokit_utils"
version = "1.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Various utilities for Zerokit"
homepage = "https://vac.dev"
documentation = "https://github.com/vacp2p/zerokit"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/vacp2p/zerokit"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
parallel = ["ark-ff/parallel"]
pmtree-ft = ["pmtree"]
[lib]
name = "zerokit_utils"
path = "src/lib.rs"
bench = false
[[test]]
name = "merkle_tree"
path = "tests/merkle_tree.rs"
[[test]]
name = "poseidon_constants"
path = "tests/poseidon_constants.rs"
[[test]]
name = "poseidon_hash_test"
path = "tests/poseidon_hash_test.rs"
[[bench]]
name = "merkle_tree_benchmark"
path = "benches/merkle_tree_benchmark.rs"
harness = false
[[bench]]
name = "poseidon_benchmark"
path = "benches/poseidon_benchmark.rs"
harness = false
[dependencies.ark-ff]
version = "0.5.0"
default-features = false
[dependencies.num-bigint]
version = "0.4.6"
default-features = false
[dependencies.pmtree]
version = "2.0.3"
optional = true
package = "vacp2p_pmtree"
[dependencies.rayon]
version = "1.11.0"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.sled]
version = "0.34.7"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.ark-bn254]
version = "0.5.0"
features = ["std"]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.hex-literal]
version = "1.1.0"
[dev-dependencies.num-traits]
version = "0.2.19"
[dev-dependencies.tiny-keccak]
version = "2.0.2"
features = ["keccak"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sled]
version = "0.34.7"
features = ["compression"]