-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
50 lines (46 loc) · 1.43 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
48
49
50
[package]
name = "jmt"
version = "0.11.0"
authors = [
"Penumbra Labs <[email protected]>",
"Diem Association <[email protected]>",
]
description = "Jellyfish Merkle Tree"
repository = "https://github.com/penumbra-zone/jmt"
homepage = "https://penumbra.zone"
license = "Apache-2.0"
edition = "2021"
keywords = ["merkle-tree", "authenticated"]
category = ["cryptography", "data-structures"]
publish = true
[features]
default = ["ics23", "std", "sha2"]
mocks = ["dep:parking_lot"]
blake3_tests = ["dep:blake3"]
std = ["dep:thiserror"]
migration = []
[dependencies]
anyhow = "1.0.38"
borsh = { version = "1.3.0" , features = ["derive", "de_strict_order"]}
digest = "0.10"
hashbrown = "0.13.2"
itertools = { version = "0.10.0", default-features = false }
mirai-annotations = "1.10.1"
num-derive = "0.3.3"
num-traits = "0.2.14"
parking_lot = { version = "0.12.1", optional = true }
serde = { version = "1.0.124", features = ["derive"] }
thiserror = { version = "1.0.24", optional = true }
sha2 = { version = "0.10", optional = true }
blake3 = { version = "1.4.0", optional = true, features = ["traits-preview"] }
hex = "0.4"
tracing = "0.1"
ics23 = { version = "0.12.0", optional = true}
[dev-dependencies]
hex = { version = "0.4", features = ["serde"] }
rand = { version = "0.8.3" }
parking_lot = { version = "0.12.1" }
serde_json = { version = "1.0.95" }
proptest = { version = "1.0.0" }
proptest-derive = { version = "0.3.0" }
sha2 = "0.10"