-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 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
45
46
47
[package]
name = "merkle-search-tree"
description = "A data structure for efficient state-based CRDT replication and anti-entropy"
authors = ["Dom Dwyer <[email protected]>"]
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/merkle-search-tree"
repository = "https://github.com/domodwyer/merkle-search-tree"
keywords = ["merkle", "tree", "crdt", "anti-entropy", "hash"]
categories = ["data-structures", "cryptography"]
exclude = [".github"]
[dependencies]
base64 = { version = "0.22.0", optional = true }
siphasher = "1.0.0"
tracing = { version = "0.1.37", optional = true }
[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]
tracing = ["dep:tracing"]
default = ["digest_base64"]
digest_base64 = ["dep:base64"]
[lib]
bench = false
[[bench]]
name = "bench"
harness = false
[package.metadata.docs.rs]
all-features = true
# Allow the cfg(not(fuzzing)) provided by cargo-fuzz to disable specific debug
# assertions to increase coverage.
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }