mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
49e79967c8
* Use `async_trait` in sc-consensus-slots This makes the code a little bit easier to read and also expresses that there can always only be one call at a time to `on_slot`. * slots: remove mutex around BlockImport in SlotWorker Co-authored-by: André Silva <andrerfosilva@gmail.com>
40 lines
1.8 KiB
TOML
40 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-consensus-slots"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Generic slots-based utilities for consensus"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
sp-trie = { version = "3.0.0", path = "../../../primitives/trie" }
|
|
sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "3.0.0", path = "../../../primitives/arithmetic" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
|
sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
|
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
|
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
|
sc-telemetry = { version = "3.0.0", path = "../../telemetry" }
|
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
|
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
|
|
futures = "0.3.9"
|
|
futures-timer = "3.0.1"
|
|
log = "0.4.11"
|
|
thiserror = "1.0.21"
|
|
async-trait = "0.1.42"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|