mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 22:47:56 +00:00
50 lines
2.7 KiB
TOML
50 lines
2.7 KiB
TOML
[package]
|
|
name = "sc-consensus-manual-seal"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Manual sealing engine 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]
|
|
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
|
assert_matches = "1.3.0"
|
|
async-trait = "0.1.57"
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.1"
|
|
log = "0.4.17"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
|
sc-consensus-aura = { version = "0.10.0-dev", path = "../../consensus/aura" }
|
|
sc-consensus-babe = { version = "0.10.0-dev", path = "../../consensus/babe" }
|
|
sc-consensus-epochs = { version = "0.10.0-dev", path = "../../consensus/epochs" }
|
|
sc-transaction-pool = { version = "4.0.0-dev", path = "../../transaction-pool" }
|
|
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
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-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
|
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
|
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
|
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
|
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
|
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
|
|
sc-basic-authorship = { version = "0.10.0-dev", path = "../../basic-authorship" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
|
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../../test-utils/runtime/transaction-pool" }
|