mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 16:17:59 +00:00
cc09bfbd09
* Apply breaking changes of new libp2p versions * Oops, forgot to update version * Fix tests * Fix imports with WASM * Fix WASM for real * Update core/network/src/debug_info.rs Co-Authored-By: Roman Borschel <romanb@users.noreply.github.com> * Fix compilation
27 lines
933 B
TOML
27 lines
933 B
TOML
[package]
|
|
name = "substrate-consensus-common"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Common utilities for substrate consensus"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = "0.15.0"
|
|
libp2p = { version = "0.13.0", default-features = false }
|
|
log = "0.4.8"
|
|
primitives = { package = "substrate-primitives", path= "../../primitives" }
|
|
inherents = { package = "substrate-inherents", path = "../../inherents" }
|
|
futures-preview = "0.3.0-alpha.19"
|
|
futures-timer = "0.4.0"
|
|
rstd = { package = "sr-std", path = "../../sr-std" }
|
|
runtime_version = { package = "sr-version", path = "../../sr-version" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
parking_lot = "0.9.0"
|
|
|
|
[dev-dependencies]
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
|
|
|
|
[features]
|
|
default = []
|