-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathCargo.toml
74 lines (66 loc) · 3.24 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
[dependencies]
cli = { package = "node-cli", path = "node/cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
substrate-cli = { git = 'https://github.com/paritytech/substrate.git' }
substrate-client = { git = 'https://github.com/paritytech/substrate.git' }
substrate-client-db = { git = 'https://github.com/paritytech/substrate.git' }
substrate-consensus-aura = { git = 'https://github.com/paritytech/substrate.git' }
substrate-consensus-babe = { git = 'https://github.com/paritytech/substrate.git' }
substrate-consensus-common = { git = 'https://github.com/paritytech/substrate.git' }
substrate-consensus-rhd = { git = 'https://github.com/paritytech/substrate.git' }
substrate-consensus-slots = { git = 'https://github.com/paritytech/substrate.git' }
substrate-executor = { git = 'https://github.com/paritytech/substrate.git' }
substrate-finality-grandpa = { git = 'https://github.com/paritytech/substrate.git' }
substrate-finality-grandpa-primitives = { git = 'https://github.com/paritytech/substrate.git' }
substrate-inherents = { git = 'https://github.com/paritytech/substrate.git' }
substrate-keyring = { git = 'https://github.com/paritytech/substrate.git' }
substrate-keystore = { git = 'https://github.com/paritytech/substrate.git' }
substrate-network = { git = 'https://github.com/paritytech/substrate.git' }
substrate-panic-handler = { git = 'https://github.com/paritytech/substrate.git' }
substrate-primitives = { git = 'https://github.com/paritytech/substrate.git' }
substrate-rpc = { git = 'https://github.com/paritytech/substrate.git' }
substrate-rpc-servers = { git = 'https://github.com/paritytech/substrate.git' }
substrate-serializer = { git = 'https://github.com/paritytech/substrate.git' }
substrate-service = { git = 'https://github.com/paritytech/substrate.git' }
substrate-service-test = { git = 'https://github.com/paritytech/substrate.git' }
sr-api-macros = { git = 'https://github.com/paritytech/substrate.git' }
sr-io = { git = 'https://github.com/paritytech/substrate.git' }
sr-primitives = { git = 'https://github.com/paritytech/substrate.git' }
sr-sandbox = { git = 'https://github.com/paritytech/substrate.git' }
sr-std = { git = 'https://github.com/paritytech/substrate.git' }
sr-version = { git = 'https://github.com/paritytech/substrate.git' }
substrate-state-machine = { git = 'https://github.com/paritytech/substrate.git' }
substrate-telemetry = { git = 'https://github.com/paritytech/substrate.git' }
substrate-transaction-pool = { git = 'https://github.com/paritytech/substrate.git' }
substrate-transaction-graph = { git = 'https://github.com/paritytech/substrate.git' }
substrate-trie = { git = 'https://github.com/paritytech/substrate.git' }
fork-tree = { git = 'https://github.com/paritytech/substrate.git' }
[build-dependencies]
vergen = '3'
[profile.release]
panic = 'unwind'
[[bin]]
name = 'darwinia'
path = 'node/src/main.rs'
[workspace]
members = [
"node/cli",
"node/executor",
"node/primitives",
"node/runtime",
"node/rpc-client",
"srml/staking",
"srml/token/ring",
"srml/token/kton",
"srml/support",
"srml/aura",
"srml/try",
]
exclude = ["node/runtime/wasm"]
[package]
authors = ['Parity Technologies <admin@parity.io>']
build = 'build.rs'
edition = '2018'
name = 'darwinia-poc1'
version = '0.1.0'