Cargo.toml 883 Bytes
Newer Older
asynchronous rob's avatar
asynchronous rob committed
1
2
3
4
5
6
[[bin]]
name = "polkadot"
path = "src/main.rs"

[package]
name = "polkadot"
Gavin Wood's avatar
Gavin Wood committed
7
version = "0.6.17"
asynchronous rob's avatar
asynchronous rob committed
8
9
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
10
edition = "2018"
asynchronous rob's avatar
asynchronous rob committed
11
12

[dependencies]
13
cli = { package = "polkadot-cli", path = "cli" }
14
15
futures = "0.1.29"
ctrlc = { version = "3.1.3", features = ["termination"] }
16
service = { package = "polkadot-service", path = "service" }
asynchronous rob's avatar
asynchronous rob committed
17
18

[build-dependencies]
19
vergen = "3.0.4"
asynchronous rob's avatar
asynchronous rob committed
20
21
22
23
24
25

[workspace]
members = [
	"availability-store",
	"cli",
	"collator",
26
	"erasure-coding",
asynchronous rob's avatar
asynchronous rob committed
27
28
29
30
31
32
33
	"executor",
	"network",
	"primitives",
	"runtime",
	"service",
	"statement-table",
	"service",
34
	"validation",
asynchronous rob's avatar
asynchronous rob committed
35
36
37
38
39
40
41
42
43
44
45
46
47

	"test-parachains/adder",
	"test-parachains/adder/collator",
]
exclude = [
	"runtime/wasm",
	"test-parachains/adder/wasm",
]

[badges]
maintenance = { status = "actively-developed" }

[profile.release]
48
# Polkadot runtime requires unwinding.
asynchronous rob's avatar
asynchronous rob committed
49
panic = "unwind"