incrementalmerkletree/Cargo.toml

24 lines
652 B
TOML
Raw Normal View History

2015-12-19 17:37:23 -08:00
[package]
name = "bridgetree"
2022-12-19 16:03:16 -08:00
version = "0.2.0"
authors = [
"Kris Nuttycombe <kris@nutty.land>",
"Sean Bowe <ewillbefull@gmail.com>",
]
2021-01-05 12:40:05 -08:00
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A space-efficient Merkle tree with witnessing of marked leaves, checkpointing & state restoration."
homepage = "https://github.com/zcash/bridgetree"
repository = "https://github.com/zcash/bridgetree"
categories = ["algorithms", "data-structures"]
2015-12-19 17:37:23 -08:00
[dependencies]
serde = { version = "1", features = ["derive"] }
proptest = { version = "1.0.0", optional = true }
2021-01-05 12:40:05 -08:00
[dev-dependencies]
proptest = "1.0.0"
[features]
test-dependencies = ["proptest"]