2022-09-28 09:33:14 +00:00
|
|
|
[package]
|
|
|
|
name = "utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-02-27 06:17:55 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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"] }
|
2023-03-07 03:41:08 +00:00
|
|
|
num-bigint = { version = "=0.4.3", default-features = false, features = ["rand"] }
|
|
|
|
color-eyre = "=0.6.2"
|
2023-07-25 09:52:55 +00:00
|
|
|
pmtree = { git = "https://github.com/vacp2p/pmtree", rev = "46a39a3", optional = true}
|
2023-04-28 04:32:21 +00:00
|
|
|
sled = "=0.34.7"
|
2023-05-05 09:45:33 +00:00
|
|
|
serde = "1.0.44"
|
2022-09-28 09:33:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-03-22 06:01:24 +00:00
|
|
|
ark-bn254 = "=0.4.0"
|
2022-09-28 09:33:14 +00:00
|
|
|
num-traits = "0.2.11"
|
|
|
|
hex-literal = "0.3.4"
|
|
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
2023-05-25 06:32:45 +00:00
|
|
|
criterion = { version = "0.4", 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
|