mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +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>
45 lines
1.6 KiB
TOML
45 lines
1.6 KiB
TOML
[package]
|
|
name = "sp-consensus"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Common utilities for building and using consensus engines in substrate."
|
|
documentation = "https://docs.rs/sp-consensus/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
[dependencies]
|
|
thiserror = "1.0.21"
|
|
libp2p = { version = "0.37.1", default-features = false }
|
|
log = "0.4.8"
|
|
sp-core = { path= "../../core", version = "4.0.0-dev"}
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../inherents" }
|
|
sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" }
|
|
futures = { version = "0.3.1", features = ["thread-pool"] }
|
|
futures-timer = "3.0.1"
|
|
sp-std = { version = "4.0.0-dev", path = "../../std" }
|
|
sp-version = { version = "4.0.0-dev", path = "../../version" }
|
|
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
|
|
sp-utils = { version = "4.0.0-dev", path = "../../utils" }
|
|
sp-trie = { version = "4.0.0-dev", path = "../../trie" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../api" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
|
parking_lot = "0.11.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
|
|
wasm-timer = "0.2.5"
|
|
async-trait = "0.1.50"
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.9"
|
|
sp-test-primitives = { version = "2.0.0", path = "../../test-primitives" }
|
|
|
|
[features]
|
|
default = []
|