forked from 2-5-Foundation/vane_web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (23 loc) · 1.25 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
[workspace]
members =[ "app", "db", "integration-test","node", "primitives","db/prisma"]
resolver = "2"
[workspace.dependencies]
# ========================================= Db ==========================================
hex = { version = "0.4.3", features = ["alloc"] }
# ========================================= Node ========================================
# ========================================= Primitives ==================================
# ========================================= IntegrationTests ============================
# ========================================= Shared ======================================
tokio = { version = "1.37.0" }
anyhow = "1.0.86"
subxt = { version = "0.37.0", default-features = false }
log = { version = "0.4.21", default-features = false }
codec = { version = "3.1.3",features = ["derive"], package = "parity-scale-codec", default-features = false }
serde = { version = "1.0.204", features = ["alloc","derive"] }
simple_logger = "5.0.0"
sp-core = { version = "34.0.0", features = ["blake2","full_crypto"]}
# ========================================= Local Dependencies ==========================
db = { path = "db" }
integration-test = { path = "integration-test" }
node = { path = "node" }
primitives = { path = "primitives" }