forked from Sovereign-Labs/sovereign-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 988 Bytes
/
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
[workspace]
resolver = "2"
members = [
"sdk",
"jmt",
"first-read-last-write-cache",
"sov-modules/sov-modules-api",
"sov-modules/sov-modules-impl",
"sov-modules/sov-modules-macros",
"sov-modules/sov-state",
]
[workspace.dependencies]
# Internal dependencies
sovereign-sdk = {path= "sdk" }
jellyfish-merkle-generic = {path= "jmt" }
first-read-last-write-cache = {path = "first-read-last-write-cache"}
sov-state = {path = "sov-modules/sov-state"}
sov-modules-api = {path = "sov-modules/sov-modules-api"}
sov-modules-macros = {path = "sov-modules/sov-modules-macros"}
# External dependencies
anyhow = "1.0.68"
borsh = { version = "0.10.0", features = ["rc"]}
byteorder = "1.4.3"
bytes = "1.2.1"
hex = "0.4.3"
once_cell = "1.10.0"
prometheus = { version = "0.13.3", default-features = false }
proptest = "1.0.0"
proptest-derive = "0.3.0"
rand = "0.8"
rayon = "1.5.2"
serde = { version = "1.0.137", features = ["derive"] }
sha2 = "0.10.6"
thiserror = "1.0.38"
tiny-keccak = "2.0.2"