-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
55 lines (50 loc) · 1.29 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
[package]
name = "integral-db"
description = "High throughput persistence layer optimized for concurrent reads and writes."
version = "0.1.0"
authors = ["VRRB Labs <[email protected]>"]
edition = "2021"
readme = "README.md"
[lib]
name = "integral_db"
path = "lr_trie/src/lib.rs"
[workspace]
members = [
"lr_trie",
]
[dependencies]
left-right = "0.11.5"
patriecia = { workspace = true }
serde = { version = "1.0.144", features = ["derive"] }
keccak-hash = "0.9"
parking_lot = "0.12"
rlp = "0.5.1"
thiserror = "1.0"
bincode = "1.3.3"
rand = { version = "0.8.5", features = ["std"] }
hex = "*"
criterion = "0.3.5"
ethereum-types = "0.13.1"
uuid = { version = "1.3.1", features = ["v4", "serde"] }
tracing = "0.1.37"
[workspace.dependencies]
left-right = "0.11.5"
patriecia = { git = "https://github.com/versatus/patriecia" }
serde = { version = "1.0.144", features = ["derive"] }
keccak-hash = "0.9"
parking_lot = "0.12"
rlp = "0.5.1"
thiserror = "1.0"
bincode = "1.3.3"
rand = { version = "0.8.5", features = ["std"] }
hex = "*"
criterion = "0.3.5"
ethereum-types = "0.13.1"
uuid = { version = "1.3.1", features = ["v4", "serde"] }
tracing = "0.1.37"
[dev-dependencies]
rand = { workspace = true }
hex = { workspace = true }
criterion = { workspace = true }
ethereum-types = { workspace = true }
uuid = { workspace = true }