mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
5eb84f9cc6
* Replace deprecated libp2p feature specs with correct ones * Bump tokio to 1.21.2 * Replace async-std libp2p primitives with tokio ones * minor: rustfmt * Fix TestNet to run initialization in the tokio context * Convert telemetry test from async-std to tokio * Convert notifications tests from async-std to tokio * Convert chain sync tests from async-std to tokio * Ditch async-std completely * Make executor mandatory * Bump tokio to 1.22.0 * minor: rustfmt * Explicitly use tokio runtime in tests * Move more tests to explicit tokio runtime * Explicitly set multithreaded runtime in tokio test * minor: rustfmt * minor: fix comment * Replace async-std with tokio in MMR tests
50 lines
2.5 KiB
TOML
50 lines
2.5 KiB
TOML
[package]
|
|
name = "sc-consensus-aura"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Aura consensus algorithm for substrate"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.57"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
futures = "0.3.21"
|
|
log = "0.4.17"
|
|
thiserror = "1.0"
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
|
sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
sp-application-crypto = { version = "7.0.0", path = "../../../primitives/application-crypto" }
|
|
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
|
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
|
|
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
|
sp-core = { version = "7.0.0", path = "../../../primitives/core" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
|
sp-keystore = { version = "0.13.0", path = "../../../primitives/keystore" }
|
|
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.12.1"
|
|
tempfile = "3.1.0"
|
|
sc-keystore = { version = "4.0.0-dev", path = "../../keystore" }
|
|
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
|
sp-keyring = { version = "7.0.0", path = "../../../primitives/keyring" }
|
|
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
|
sp-tracing = { version = "6.0.0", path = "../../../primitives/tracing" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
|
tokio = { version = "1.22.0" }
|