-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
73 lines (68 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "patriecia"
description = "VRRB protocol merkle trie library"
version = "1.0.0"
edition = "2021"
authors = ["VRRB Labs <info@vrrb.io>"]
readme = "README.md"
[lib]
name = "patriecia"
path = "pmt/src/lib.rs"
[dependencies]
hex = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true }
rlp = { workspace = true }
thiserror = { workspace = true }
keccak-hash = { workspace = true }
parking_lot = { workspace = true }
hashbrown = { workspace = true }
fixed-hash = { workspace = true }
serde_hash = { workspace = true }
jmt = { workspace = true }
[workspace]
members = [
"jmt",
"pmt",
"serde_hash",
]
[workspace.dependencies]
serde_hash = { path = "serde_hash" }
jmt = { path = "jmt", features = ["mocks"] }
left-right = "0.11.5"
keccak-hash = "0.9"
fixed-hash = "0.7.0"
log = "0.4.16"
rlp = "0.5.1"
rand = "0.8.3"
bytes = { version = "1.4.0", features = ["serde"] }
serde_json = "1.0.96"
bincode = "1.3.3"
serde = { version = "1.0.163", features = ["derive"] }
hex = { version = "0.4.2", features = ["serde"] }
serde_bytes = "0.11.9"
anyhow = "1.0.38"
borsh = "0.10.0"
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" }
thiserror = { version = "1.0.32" }
sha2 = "0.10"
tracing = "0.1"
proptest = { version = "1.0.0" }
proptest-derive = { version = "0.3.0" }
criterion = "0.3.5"
ethereum-types = "0.13.1"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
[dev-dependencies]
anyhow.workspace = true
rand.workspace = true
hex.workspace = true
criterion.workspace = true
ethereum-types.workspace = true
uuid.workspace = true
proptest.workspace = true
proptest-derive.workspace = true