-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 1.13 KB
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
[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"
polkadot-sdk = { version = "2512.1.0", default-features = false }
# crates which cannot be used from polkadot-sdk
sp-core = { version = "39.0.0", default-features = false }
sp-runtime-interface = { version = "33.0.0", default-features = false }
cumulus-pallet-parachain-system = { version = "0.25.0", default-features = false }
substrate-wasm-builder = "31.1.0"
sc-service = "0.56.0"
sc-network-sync = "0.54.0"
sc-tracing = "44.0.0"
# local crates
simnode-runtime-api = { path = "./runtime-api", version = "2512.0.0", default-features = false }
sc-simnode = { path = "./simnode", version = "2512.0.0" }