forked from canyon-network/canyon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 976 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
[package]
name = "canyon"
description = "Implementation of https://canyon-network.io node in Rust based on the Substrate framework."
license = "GPL-3.0"
version = "0.1.0"
authors = ["Canyon Labs <https://github.com/canyon-network>"]
edition = "2018"
readme = "README.md"
[workspace]
resolver = "2"
members = [
"cli",
"client/consensus/poa",
"client/datastore",
"client/rpc",
"client/rpc-api",
"executor",
"inspect",
"pallets/permastore",
"pallets/poa",
"primitives",
"primitives/consensus/poa",
"primitives/permastore",
"primitives/poa",
"rpc",
"runtime",
]
[profile.release]
panic = "unwind"
[[bin]]
name = "canyon"
path = "src/main.rs"
required-features = ["canyon-cli/cli"]
[dependencies]
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
canyon-cli = { path = "cli" }
[features]
runtime-benchmarks = ["canyon-cli/runtime-benchmarks"]
try-runtime = ["canyon-cli/try-runtime"]