mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 01:11:04 +00:00
3f9a05a0d3
* adding license fields to all crates * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "sc-consensus-manual-seal"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Manual sealing engine for Substrate"
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.2"
|
|
futures = "0.3.1"
|
|
jsonrpc-core = "14.0.5"
|
|
jsonrpc-core-client = "14.0.5"
|
|
jsonrpc-derive = "14.0.5"
|
|
log = "0.4.8"
|
|
parking_lot = "0.10"
|
|
serde = { version = "1.0", features=["derive"] }
|
|
|
|
sc-client = { path = "../../../client" }
|
|
sc-client-api = { path = "../../../client/api" }
|
|
sc-transaction-pool = { path = "../../transaction-pool", features = ["test-helpers"] }
|
|
sp-blockchain = { path = "../../../primitives/blockchain" }
|
|
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
|
sp-inherents = { path = "../../../primitives/inherents" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-transaction-pool = { path = "../../../primitives/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
sc-basic-authorship = { path = "../../basic-authorship" }
|
|
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
|
env_logger = "0.7.0"
|
|
tempfile = "3.1.0"
|