-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
39 lines (33 loc) · 1.13 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
[workspace]
resolver = "2"
members = [
"simnode",
"runtime-api",
"tests",
# parachain
"examples/parachain/node",
"examples/parachain/runtime",
# aura
"examples/aura/node",
"examples/aura/runtime",
# babe
"examples/babe/node",
"examples/babe/runtime",
"examples/babe/rpc",
]
[workspace.dependencies]
codec = { version = "3.1.3", package = "parity-scale-codec", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
jsonrpsee = "0.24"
try-runtime-cli = "0.41.0"
polkadot-sdk = { version = "0.7.0", default-features = false }
# crates which cannot be used from polkadot-sdk
sp-core = { version = "34.0.0", default-features = false }
sp-runtime-interface = { version = "28.0.0", default-features = false }
cumulus-pallet-parachain-system = { version = "0.17.1", default-features = false }
substrate-wasm-builder = "24.0.1"
sc-service = "0.46.0"
sc-tracing = "37.0.1"
# local crates
simnode-runtime-api = { path = "./runtime-api", version = "16.0.0", default-features = false }
sc-simnode = { path = "./simnode", version = "16.0.0" }