mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 01:11:04 +00:00
c93b142692
* Initial commit
Forked at: 703ac8bbbc
Parent branch: origin/master
* Test running node and interrupts
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* Update Cargo.lock
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
* WIP
Forked at: 1942ae27ae23809a40f955545dfbf0467faa7750
Parent branch: origin/cumulus-branch
55 lines
944 B
TOML
55 lines
944 B
TOML
[[bin]]
|
|
name = "polkadot"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "polkadot"
|
|
version = "0.7.20"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cli = { package = "polkadot-cli", path = "cli" }
|
|
futures = "0.3.4"
|
|
service = { package = "polkadot-service", path = "service" }
|
|
|
|
[build-dependencies]
|
|
vergen = "3.0.4"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.12"
|
|
nix = "0.17"
|
|
|
|
[workspace]
|
|
members = [
|
|
"availability-store",
|
|
"cli",
|
|
"collator",
|
|
"erasure-coding",
|
|
"network",
|
|
"primitives",
|
|
"runtime/common",
|
|
"runtime/polkadot",
|
|
"runtime/kusama",
|
|
"service",
|
|
"statement-table",
|
|
"service",
|
|
"validation",
|
|
|
|
"test-parachains/adder",
|
|
"test-parachains/adder/collator",
|
|
]
|
|
exclude = [
|
|
"runtime/polkadot/wasm",
|
|
"runtime/kusama/wasm",
|
|
"test-parachains/adder/wasm",
|
|
]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[profile.release]
|
|
# Polkadot runtime requires unwinding.
|
|
panic = "unwind"
|