27 lines
813 B
TOML
27 lines
813 B
TOML
[package]
|
|
name = "bridgetree"
|
|
description = "A space-efficient Merkle tree designed for linear appends with witnessing of marked leaves, checkpointing & state restoration."
|
|
version = "0.6.0"
|
|
authors = [
|
|
"Kris Nuttycombe <kris@nutty.land>",
|
|
"Sean Bowe <ewillbefull@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
repository = "https://github.com/zcash/incrementalmerkletree"
|
|
homepage = "https://github.com/zcash/incrementalmerkletree"
|
|
license = "MIT OR Apache-2.0"
|
|
categories = ["algorithms", "data-structures"]
|
|
|
|
[dependencies]
|
|
incrementalmerkletree = "0.7"
|
|
proptest = { version = "1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
incrementalmerkletree = { version = "0.7", features = ["test-dependencies"] }
|
|
incrementalmerkletree-testing = "0.1"
|
|
proptest = "1"
|
|
|
|
[features]
|
|
test-dependencies = ["proptest"]
|