mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 13:07:56 +00:00
eaa0ab014a
* Drop import_lock from client, move it into backend, impl default version via static mutex * still need to allow depcretion because of client.backend * additional docs * Remove default impl of get_import_lock, impl on instances * Bump parking_lot to 0.8.0 accross the board
29 lines
941 B
TOML
29 lines
941 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.14.0"
|
|
crossbeam-channel = "0.3.4"
|
|
libp2p = { version = "0.9.0", default-features = false }
|
|
log = "0.4"
|
|
primitives = { package = "substrate-primitives", path= "../../primitives" }
|
|
inherents = { package = "substrate-inherents", path = "../../inherents" }
|
|
futures = "0.1"
|
|
rstd = { package = "sr-std", path = "../../sr-std" }
|
|
runtime_version = { package = "sr-version", path = "../../sr-version" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives" }
|
|
tokio-timer = "0.2"
|
|
parity-codec = { version = "3.3", features = ["derive"] }
|
|
parking_lot = "0.8.0"
|
|
|
|
[dev-dependencies]
|
|
test_client = { package = "substrate-test-client", path = "../../test-client" }
|
|
|
|
[features]
|
|
default = []
|
|
test-helpers = []
|