[package]
edition = "2021"
name = "hashtree-core"
version = "0.2.30"
authors = ["Martti Malmi"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple content-addressed merkle tree with KV storage"
homepage = "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/hashtree"
readme = "README.md"
keywords = [
"merkle",
"content-addressed",
"hash",
"tree",
"storage",
]
license = "MIT"
repository = "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/hashtree"
[lib]
name = "hashtree_core"
path = "src/lib.rs"
[[test]]
name = "formal_codec_props"
path = "tests/formal_codec_props.rs"
[[test]]
name = "formal_diff_props"
path = "tests/formal_diff_props.rs"
[[test]]
name = "formal_tree_props"
path = "tests/formal_tree_props.rs"
[[test]]
name = "hashtree"
path = "tests/hashtree.rs"
[[test]]
name = "interop"
path = "tests/interop.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[bench]]
name = "builder"
path = "benches/builder.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.bech32]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.rmp-serde]
version = "1.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"rt-multi-thread",
"macros",
]