mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 09:51:02 +00:00
2d7fa18e73
* Make DispatchError impl MEL * Upgrade SCALE codec to support `codec(skip)` for MEL Co-authored-by: Bastian Köcher <info@kchr.de>
49 lines
2.6 KiB
TOML
49 lines
2.6 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.2.2" }
|
|
futures = "0.3.21"
|
|
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 = "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" }
|
|
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" }
|