forked from hicommonwealth/edgeware-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 958 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
[package]
name = "edgeware"
version = "1.0.0"
authors = ["Commonwealth Labs <hello@commonwealth.im>"]
build = "build.rs"
edition = "2018"
[[bin]]
name = "edgeware"
path = "node/src/main.rs"
[dependencies]
error-chain = "0.12"
edgeware-cli = { path = "node/cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
[build-dependencies]
vergen = "3"
[workspace]
members = [
"node/runtime",
"node/cli",
"node/executor",
"node/primitives",
"node/service",
"node/rpc",
"modules/edge-signaling",
"modules/edge-identity",
"modules/edge-voting",
"modules/edge-treasury-reward",
]
[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"