-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (42 loc) · 1.08 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
[package]
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia node implementation in Rust"
edition = "2018"
homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "darwinia"
repository = "https://github.com/darwinia-network/darwinia/"
version = "0.11.5"
[[bin]]
name = "darwinia"
path = "src/main.rs"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
# crates.io
futures = { version = "0.3.15" }
parity-util-mem = { version = "0.9.0", default-features = false, features = ["jemalloc-global"] }
# darwinia-network
darwinia-cli = { path = "cli" }
darwinia-service = { path = "node/service" }
[features]
default = ["darwinia-cli/wasmtime"]
dev = [
"darwinia-service/dev",
"darwinia-cli/dev",
]
try-runtime = ["darwinia-cli/try-runtime"]
runtime-benchmarks = ["darwinia-cli/runtime-benchmarks"]
[workspace]
members = [
"cli",
"primitives",
"rpc",
"runtime/common",
"runtime/crab",
"runtime/darwinia",
"node/service",
]
[profile.release]
# Darwinia runtime requires unwinding.
panic = "unwind"