2022-09-28 09:33:14 +00:00
|
|
|
[package]
|
2023-07-28 10:25:34 +00:00
|
|
|
name = "zerokit_utils"
|
2024-06-20 11:14:46 +00:00
|
|
|
version = "0.5.1"
|
2022-09-28 09:33:14 +00:00
|
|
|
edition = "2021"
|
2023-02-27 06:17:55 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-28 10:25:34 +00:00
|
|
|
description = "Various utilities for Zerokit"
|
2023-08-05 05:12:21 +00:00
|
|
|
documentation = "https://github.com/vacp2p/zerokit"
|
|
|
|
homepage = "https://vac.dev"
|
|
|
|
repository = "https://github.com/vacp2p/zerokit"
|
2023-05-29 14:14:00 +00:00
|
|
|
|
|
|
|
[lib]
|
2023-05-25 06:32:45 +00:00
|
|
|
bench = false
|
2022-09-28 09:33:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-22 06:01:24 +00:00
|
|
|
ark-ff = { version = "=0.4.1", default-features = false, features = ["asm"] }
|
2024-08-28 10:41:18 +00:00
|
|
|
num-bigint = { version = "=0.4.3", default-features = false, features = [
|
|
|
|
"rand",
|
|
|
|
] }
|
2023-03-07 03:41:08 +00:00
|
|
|
color-eyre = "=0.6.2"
|
2024-08-28 10:41:18 +00:00
|
|
|
pmtree = { package = "vacp2p_pmtree", version = "=2.0.2", optional = true }
|
2023-04-28 04:32:21 +00:00
|
|
|
sled = "=0.34.7"
|
2023-07-28 10:25:34 +00:00
|
|
|
serde = "=1.0.163"
|
2024-05-09 10:37:34 +00:00
|
|
|
lazy_static = "1.4.0"
|
2024-05-17 09:35:18 +00:00
|
|
|
hex = "0.4"
|
2022-09-28 09:33:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-22 06:01:24 +00:00
|
|
|
ark-bn254 = "=0.4.0"
|
2023-07-28 10:25:34 +00:00
|
|
|
num-traits = "=0.2.15"
|
|
|
|
hex-literal = "=0.3.4"
|
|
|
|
tiny-keccak = { version = "=2.0.2", features = ["keccak"] }
|
|
|
|
criterion = { version = "=0.4.0", features = ["html_reports"] }
|
2022-09-28 09:33:14 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["parallel"]
|
2022-09-30 15:27:55 +00:00
|
|
|
parallel = ["ark-ff/parallel"]
|
2023-04-28 04:32:21 +00:00
|
|
|
pmtree-ft = ["pmtree"]
|
2023-05-25 06:32:45 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "merkle_tree_benchmark"
|
|
|
|
harness = false
|