mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 02:48:03 +00:00
4da48dd9f5
* Update dependencies, respecting semver * Bump dependencies * Don’t patch tiny-bip39 dependency
40 lines
1.9 KiB
TOML
40 lines
1.9 KiB
TOML
[package]
|
|
name = "substrate-consensus-aura"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Aura consensus algorithm for substrate"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives" }
|
|
app-crypto = { package = "substrate-application-crypto", path = "../../application-crypto" }
|
|
runtime_support = { package = "srml-support", path = "../../../srml/support" }
|
|
runtime_version = { package = "sr-version", path = "../../sr-version" }
|
|
runtime_io = { package = "sr-io", path = "../../sr-io" }
|
|
slots = { package = "substrate-consensus-slots", path = "../slots" }
|
|
aura_primitives = { package = "substrate-consensus-aura-primitives", path = "primitives" }
|
|
inherents = { package = "substrate-inherents", path = "../../inherents" }
|
|
srml-aura = { path = "../../../srml/aura" }
|
|
client = { package = "substrate-client", path = "../../client" }
|
|
substrate-telemetry = { path = "../../telemetry" }
|
|
keystore = { package = "substrate-keystore", path = "../../keystore" }
|
|
consensus_common = { package = "substrate-consensus-common", path = "../common" }
|
|
sr-primitives = { path = "../../sr-primitives" }
|
|
futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
|
|
futures01 = { package = "futures", version = "0.1" }
|
|
futures-timer = "0.4.0"
|
|
parking_lot = "0.9.0"
|
|
log = "0.4.8"
|
|
derive_more = "0.15.0"
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "substrate-keyring", path = "../../keyring" }
|
|
substrate-executor = { path = "../../executor" }
|
|
network = { package = "substrate-network", path = "../../network", features = ["test-helpers"]}
|
|
service = { package = "substrate-service", path = "../../service" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../test-runtime/client" }
|
|
tokio = "0.1.22"
|
|
env_logger = "0.7.0"
|
|
tempfile = "3.1.0"
|