forked from paritytech/substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (45 loc) · 993 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
39
40
41
42
43
44
45
46
47
48
[[bin]]
name = "polkadot"
path = "polkadot/src/main.rs"
[package]
name = "polkadot"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
[dependencies]
error-chain = "0.11"
polkadot-cli = { path = "polkadot/cli" }
[workspace]
members = [
"polkadot/api",
"polkadot/cli",
"polkadot/collator",
"polkadot/consensus",
"polkadot/executor",
"polkadot/primitives",
"polkadot/runtime",
"polkadot/statement-table",
"polkadot/validator",
"substrate/bft",
"substrate/client",
"substrate/codec",
"substrate/environmental",
"substrate/executor",
"substrate/keyring",
"substrate/network",
"substrate/primitives",
"substrate/rpc-servers",
"substrate/rpc",
"substrate/runtime-io",
"substrate/runtime-std",
"substrate/runtime-support",
"substrate/serializer",
"substrate/state-machine",
"substrate/test-runtime",
]
exclude = [
"polkadot/runtime/wasm",
"substrate/executor/wasm",
"substrate/pwasm-alloc",
"substrate/pwasm-libc",
"substrate/test-runtime/wasm",
]