mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 03:27:58 +00:00
ea7c79dac4
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.48 to 0.1.50. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.48...0.1.50) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.8 KiB
TOML
41 lines
1.8 KiB
TOML
[package]
|
|
name = "sc-consensus-slots"
|
|
version = "0.10.0-dev"
|
|
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 = "4.0.0-dev", path = "../../api" }
|
|
sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" }
|
|
sp-trie = { version = "4.0.0-dev", path = "../../../primitives/trie" }
|
|
sp-application-crypto = { version = "4.0.0-dev", path = "../../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "4.0.0-dev", path = "../../../primitives/arithmetic" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
|
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
|
sp-runtime = { version = "4.0.0-dev", path = "../../../primitives/runtime" }
|
|
sp-state-machine = { version = "0.10.0-dev", path = "../../../primitives/state-machine" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
|
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
|
futures = "0.3.9"
|
|
futures-timer = "3.0.1"
|
|
log = "0.4.11"
|
|
thiserror = "1.0.21"
|
|
impl-trait-for-tuples = "0.2.1"
|
|
async-trait = "0.1.50"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|