mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 06:17:56 +00:00
50 lines
873 B
TOML
50 lines
873 B
TOML
[[bin]]
|
|
name = "polkadot"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "polkadot"
|
|
version = "0.6.6"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cli = { package = "polkadot-cli", path = "cli" }
|
|
futures = "0.1"
|
|
ctrlc = { version = "3.0", features = ["termination"] }
|
|
service = { package = "polkadot-service", path = "service" }
|
|
|
|
[build-dependencies]
|
|
vergen = "3"
|
|
|
|
[workspace]
|
|
members = [
|
|
"availability-store",
|
|
"cli",
|
|
"collator",
|
|
"erasure-coding",
|
|
"executor",
|
|
"network",
|
|
"primitives",
|
|
"runtime",
|
|
"service",
|
|
"statement-table",
|
|
"service",
|
|
"validation",
|
|
|
|
"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"
|