mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
6f50d0928d
* Add parachains for rococo * Fix chain specs * Update to revert log rotation * Support selecting the chain in `export-genesis-state` * Add subcommand for exporting the genesis wasm of a Parachain * Update stuff * Fix `export-genesis-wasm` * Update the polkadot ref * Add bootNodes address * Add bootNodes address - track * Add bootNodes address - trick * Fix incorrect peer id (trick) * Fixes https://github.com/paritytech/cumulus/issues/157 * Update chainspecs * Update specs again * Set correct sudo account * Update properties * Update readme * Update `Cargo.lock` * Switch to rococo-branch Co-authored-by: Evaldo <contato@evaldofelipe.com> Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
29 lines
1.4 KiB
TOML
29 lines
1.4 KiB
TOML
[package]
|
|
name = "cumulus-consensus"
|
|
description = "Proxy Polkadot's consensus as a consensus engine for Substrate"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# substrate deps
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" }
|
|
|
|
# polkadot deps
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" }
|
|
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" }
|
|
|
|
# other deps
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
tokio = "0.1.22"
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] }
|
|
log = "0.4"
|