mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 05:17:59 +00:00
927e13c13a
* Adding script for rename, could be applicable for nodes on top of it, too * add stderr and gitlab ci features * apply script * fix now minor details in expected stderr * Update the Cargo.lock * fix name: sc-transaction -> sc-tracing * fix rename in script, too
56 lines
2.5 KiB
TOML
56 lines
2.5 KiB
TOML
[package]
|
|
name = "sc-consensus-babe"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "BABE consensus algorithm for substrate"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
babe_primitives = { package = "sp-consensus-babe", path = "../../../primitives/consensus/babe" }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core" }
|
|
app-crypto = { package = "sc-application-crypto", path = "../../../primitives/application-crypto" }
|
|
num-bigint = "0.2.3"
|
|
num-rational = "0.2.2"
|
|
num-traits = "0.2.8"
|
|
runtime-version = { package = "sp-version", path = "../../../primitives/sr-version" }
|
|
runtime-io = { package = "sp-io", path = "../../../primitives/sr-io" }
|
|
inherents = { package = "sp-inherents", path = "../../../primitives/inherents" }
|
|
sp-timestamp = { path = "../../../primitives/timestamp" }
|
|
sc-telemetry = { path = "../../telemetry" }
|
|
keystore = { package = "sc-keystore", path = "../../keystore" }
|
|
client-api = { package = "sc-client-api", path = "../../api" }
|
|
client = { package = "sc-client", path = "../../" }
|
|
sp-api = { path = "../../../primitives/sr-api" }
|
|
block-builder-api = { package = "sp-block-builder", path = "../../../primitives/block-builder/runtime-api" }
|
|
sp-blockchain = { path = "../../../primitives/blockchain" }
|
|
consensus-common = { package = "sp-consensus", path = "../../../primitives/consensus/common" }
|
|
uncles = { package = "sc-consensus-uncles", path = "../uncles" }
|
|
slots = { package = "sc-consensus-slots", path = "../slots" }
|
|
sp-runtime = { path = "../../../primitives/sr-primitives" }
|
|
fork-tree = { path = "../../../utils/fork-tree" }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
futures01 = { package = "futures", version = "0.1" }
|
|
futures-timer = "0.4.0"
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
schnorrkel = { version = "0.8.5", features = ["preaudit_deprecated"] }
|
|
rand = "0.7.2"
|
|
merlin = "1.2.1"
|
|
pdqselect = "0.1.0"
|
|
derive_more = "0.99.2"
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "sp-keyring", path = "../../../primitives/keyring" }
|
|
sc-executor = { path = "../../executor" }
|
|
network = { package = "sc-network", path = "../../network", features = ["test-helpers"]}
|
|
service = { package = "sc-service", path = "../../service" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../../test/utils/runtime/client" }
|
|
block-builder = { package = "sc-block-builder", path = "../../block-builder" }
|
|
tokio = "0.1.22"
|
|
env_logger = "0.7.0"
|
|
tempfile = "3.1.0"
|
|
|
|
[features]
|
|
test-helpers = []
|