-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (40 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "prollytree"
description = "A prolly (probabilistic) tree for efficient storage, retrieval, and modification of ordered data."
authors = ["Feng Zhang <f.feng.zhang@gmail.com>"]
version = "0.1.0-beta.1"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/prollytree"
repository = "https://github.com/zhangfengcdt/prollytree.git"
keywords = ["prolly", "tree", "probabilistic", "hash"]
categories = ["data-structures", "cryptography"]
[dependencies]
base64 = { version = "0.22.0", optional = true }
sha2 = "0.10"
tracing = { version = "0.1.37", optional = true }
rand = "0.8.5"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
hex = "0.4.3"
bincode = "1.3.3"
thiserror = "2.0.3"
twox-hash = "2.0"
serde_json = "1.0.117"
arrow = "53.2.0"
schemars = "0.8"
[dev-dependencies]
assert_matches = "1.5.0"
criterion = "0.5.1"
insta = "1.31.0"
paste = "1.0.14"
proptest = "1.2.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[features]
default = ["digest_base64", "prolly_balance_max_nodes"]
tracing = ["dep:tracing"]
digest_base64 = ["dep:base64"]
prolly_balance_max_nodes = []
prolly_balance_rolling_hash = []