mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 05:47:58 +00:00
9fb22ce28d
* cargo update * Update to latest ctrlc crate * Update vergen * Update to latest pretty_assertions * Update log * Update parking_lot * Update hex-rustc
49 lines
798 B
TOML
49 lines
798 B
TOML
[[bin]]
|
|
name = "polkadot"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "polkadot"
|
|
version = "0.3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
polkadot-cli = { path = "cli" }
|
|
futures = "0.1"
|
|
ctrlc = { version = "3.0", features = ["termination"] }
|
|
|
|
[build-dependencies]
|
|
vergen = "3"
|
|
|
|
[workspace]
|
|
members = [
|
|
"availability-store",
|
|
"cli",
|
|
"collator",
|
|
"consensus",
|
|
"erasure-coding",
|
|
"executor",
|
|
"network",
|
|
"primitives",
|
|
"runtime",
|
|
"service",
|
|
"statement-table",
|
|
"service",
|
|
|
|
"test-parachains/adder",
|
|
"test-parachains/adder/collator",
|
|
]
|
|
exclude = [
|
|
"runtime/wasm",
|
|
"test-parachains/adder/wasm",
|
|
]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[profile.release]
|
|
# Polkadot runtime requires unwinding.
|
|
panic = "unwind"
|