forked from paritytech/substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
104 lines (98 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[[bin]]
name = "substrate"
path = "node/src/main.rs"
[package]
name = "substrate"
version = "1.0.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2018"
[dependencies]
error-chain = "0.12"
cli = { package = "node-cli", path = "node/cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
[build-dependencies]
vergen = "3"
[workspace]
members = [
"core/cli",
"core/client",
"core/client/db",
"core/consensus/common",
"core/consensus/aura",
"core/consensus/babe",
"core/consensus/rhd",
"core/consensus/slots",
"core/executor",
"core/finality-grandpa",
"core/finality-grandpa/primitives",
"core/keyring",
"core/network",
"core/panic-handler",
"core/primitives",
"core/rpc",
"core/rpc-servers",
"core/serializer",
"core/service",
"core/service/test",
"core/sr-api-macros",
"core/sr-io",
"core/sr-primitives",
"core/sr-sandbox",
"core/sr-std",
"core/sr-version",
"core/state-machine",
"core/test-runtime",
"core/telemetry",
"core/trie",
"core/keystore",
"core/transaction-pool",
"core/transaction-pool/graph",
"core/inherents",
"core/util/fork-tree",
"srml/support",
"srml/support/procedural",
"srml/support/procedural/tools",
"srml/support/procedural/tools/derive",
"srml/support/test",
"srml/assets",
"srml/aura",
"srml/balances",
"srml/consensus",
"srml/contract",
"srml/council",
"srml/democracy",
"srml/example",
"srml/executive",
"srml/finality-tracker",
"srml/grandpa",
"srml/indices",
"srml/metadata",
"srml/session",
"srml/staking",
"srml/sudo",
"srml/system",
"srml/timestamp",
"srml/treasury",
"node/cli",
"node/executor",
"node/primitives",
"node/runtime",
"node-template",
"subkey",
]
exclude = [
"node/runtime/wasm",
"core/executor/wasm",
"core/test-runtime/wasm",
"test-utils/chain-spec-builder"
]
[badges]
travis-ci = { repository = "paritytech/substrate", branch = "master" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "paritytech/substrate" }
is-it-maintained-open-issues = { repository = "paritytech/substrate" }
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"