mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
45655e485b
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.51 to 0.1.57. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.51...0.1.57) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
3.1 KiB
TOML
64 lines
3.1 KiB
TOML
[package]
|
|
name = "sc-consensus-babe"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "BABE consensus algorithm 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/"
|
|
documentation = "https://docs.rs/sc-consensus-babe"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.57"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = [
|
|
"derive",
|
|
] }
|
|
futures = "0.3.21"
|
|
log = "0.4.17"
|
|
merlin = "2.0"
|
|
num-bigint = "0.2.3"
|
|
num-rational = "0.2.2"
|
|
num-traits = "0.2.8"
|
|
parking_lot = "0.12.1"
|
|
rand = "0.7.2"
|
|
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated"] }
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
|
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 = "../../../client/consensus/common" }
|
|
sc-consensus-epochs = { version = "0.10.0-dev", path = "../epochs" }
|
|
sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" }
|
|
sc-keystore = { version = "4.0.0-dev", path = "../../keystore" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
sp-application-crypto = { version = "6.0.0", path = "../../../primitives/application-crypto" }
|
|
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
|
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-consensus-vrf = { version = "0.10.0-dev", path = "../../../primitives/consensus/vrf" }
|
|
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
|
sp-io = { version = "6.0.0", path = "../../../primitives/io" }
|
|
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
|
|
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
|
sp-version = { version = "5.0.0", path = "../../../primitives/version" }
|
|
|
|
[dev-dependencies]
|
|
rand_chacha = "0.2.2"
|
|
tempfile = "3.1.0"
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
|
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
|
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
|
sp-tracing = { version = "5.0.0", path = "../../../primitives/tracing" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|