mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
19095168ce
* provide through inherent-data when authoring * remove unneeded codec round-trip in proposer * refactor polkadot-consensus service architecture * integrate block authorship into polkadot service * remove unused extern substrate-network crate in service * write wrapper for unifying errors in consensus proposer * extend wrapper further * switch temporarily to macro-changing branch * runtime compiles * implement `inherent_extrinsics` for runtime * block authorship works * add GRANDPA to polkadot runtime * get everything compiling * use substrate master branch again * remove some unneeded params * update WASM * parse only extrinsics when pruning availability store * update recent deps * runtime almost compiles * need to expose trait type in build : I had to put phantomdata manually. * finish updating authorship to latest GRANDPA and Aura * fix tests * update wasm
29 lines
1.2 KiB
TOML
29 lines
1.2 KiB
TOML
[package]
|
|
name = "polkadot-service"
|
|
version = "0.3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parking_lot = "0.4"
|
|
error-chain = "0.12"
|
|
lazy_static = "1.0"
|
|
log = "0.3"
|
|
slog = "^2"
|
|
tokio = "0.1.7"
|
|
hex-literal = "0.1"
|
|
polkadot-availability-store = { path = "../availability-store" }
|
|
polkadot-consensus = { path = "../consensus" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-network = { path = "../network" }
|
|
sr-io = { git = "https://github.com/paritytech/substrate" }
|
|
sr-primitives = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-client = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-consensus-aura = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-service = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-telemetry = { git = "https://github.com/paritytech/substrate" }
|
|
substrate-transaction-pool = { git = "https://github.com/paritytech/substrate" }
|