forked from Sovereign-Labs/sovereign-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (63 loc) · 2.19 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
[workspace]
resolver = "2"
members = [
"db/schemadb",
"db/sovereign-db",
"demo-app",
"sdk",
"first-read-last-write-cache",
"sov-modules/sov-app-template",
"sov-modules/sov-modules-macros",
"sov-modules/sov-state",
"sov-modules/sov-modules-api",
"sov-modules/sov-modules-impl/accounts",
"sov-modules/sov-modules-impl/bank",
"sov-modules/sov-modules-impl/examples/value-setter",
"sov-modules/sov-modules-impl/examples/election",
"sov-modules/sov-modules-impl/integration-tests",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Sovereign Labs <[email protected]>"]
homepage = "sovereign.xyz"
publish = false
repository = "https://github.com/sovereign-labs/sovereign"
rust-version = "1.67"
[workspace.dependencies]
# Internal dependencies
sovereign-sdk = {path= "sdk" }
first-read-last-write-cache = {path = "first-read-last-write-cache"}
sov-app-template = { path = "sov-modules/sov-app-template" }
election = { path = "sov-modules/sov-modules-impl/examples/election" }
value-setter = { path = "sov-modules/sov-modules-impl/examples/value-setter" }
accounts = { path = "sov-modules/sov-modules-impl/accounts" }
bank = { path = "sov-modules/sov-modules-impl/bank" }
schemadb = {path = "db/schemadb"}
sovereign-db = {path = "db/sovereign-db"}
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"}
# Dependencies maintained by sovereign
#jmt = { git = "https://github.com/penumbra-zone/jmt.git", rev = "2475dfb7b73bf16de518c2de34f10e00cd4fa909" }
jmt = { git = "https://github.com/penumbra-zone/jmt.git", rev = "3d374ed7de884d50cbcd9559ef0a53adaacbf828" }
# External dependencies
anyhow = "1.0.68"
borsh = { version = "0.10.2", 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"
rocksdb = { version = "0.19.0", features = ["lz4"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = { version = "1.0"}
sha2 = "0.10.6"
thiserror = "1.0.38"
tiny-keccak = "2.0.2"
tracing = "0.1.37"