forked from darwinia-network/darwinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1009 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
49
50
51
[[bin]]
name = "darwinia"
path = "src/main.rs"
[package]
name = "darwinia"
version = "0.5.0"
authors = ["Darwinia Network <[email protected]>"]
description = "Darwinia node implementation in Rust"
build = "build.rs"
edition = "2018"
license = "GPL-3.0"
homepage = "https://darwinia.network/"
repository = "https://github.com/darwinia-network/darwinia/"
[dependencies]
# third-party
futures = "0.3.4"
parity-util-mem = { version = "*", default-features = false, features = ["jemalloc-global"] }
# darwinia
darwinia-cli = { path = "cli" }
darwinia-service = { path = "service" }
[build-dependencies]
vergen = "3.1.0"
[dev-dependencies]
assert_cmd = "1.0.1"
nix = "0.17"
[workspace]
members = [
"cli",
"primitives",
"rpc",
"runtime/common",
"runtime/crab",
"service",
]
exclude = []
[badges]
maintenance = { status = "actively-developed" }
[profile.release]
# Darwinia runtime requires unwinding.
panic = "unwind"
# TODO: benchmark
# [features]
# runtime-benchmarks=["cli/runtime-benchmarks"]