-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (41 loc) · 1.49 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
[package]
name = "multisig-node"
version = "0.9.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
[[bin]]
name = "multisig-node"
path = "src/main.rs"
[dependencies]
error-chain = "0.12"
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
log = "0.4"
tokio = "0.1.7"
exit-future = "0.1"
parking_lot = "0.4"
hex-literal = "0.1"
slog = "^2"
parity-codec = { version = "2.1" }
trie-root = { git = "https://github.com/paritytech/trie" }
sr-io = { git = "https://github.com/mixbytes/substrate" }
sr-primitives = { git = "https://github.com/mixbytes/substrate" }
substrate-cli = { git = "https://github.com/mixbytes/substrate" }
substrate-primitives = { git = "https://github.com/mixbytes/substrate" }
substrate-executor = { git = "https://github.com/mixbytes/substrate" }
substrate-service = { git = "https://github.com/mixbytes/substrate" }
substrate-transaction-pool = { git = "https://github.com/mixbytes/substrate" }
substrate-network = { git = "https://github.com/mixbytes/substrate" }
substrate-consensus-aura = { git = "https://github.com/mixbytes/substrate" }
substrate-client = { git = "https://github.com/mixbytes/substrate", default-features = false }
substrate-finality-grandpa = { git = "https://github.com/mixbytes/substrate" }
multisig-node-runtime = { path = "runtime" }
structopt = "0.2.13"
[build-dependencies]
vergen = "2"
[workspace]
members = [ "runtime" ]
exclude = [ "runtime/wasm" ]
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"