mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
30c32e3d84
Moves [substrate-bip39](https://github.com/paritytech/substrate-bip39) into substrate. All git history is preserved. Dependencies have been updated to use the same version as the rest of the repo. Fixes https://github.com/paritytech/polkadot-sdk/issues/1934. --------- Co-authored-by: Maciej Hirsz <maciej.hirsz@gmail.com> Co-authored-by: Maciej Hirsz <1096222+maciejhirsz@users.noreply.github.com> Co-authored-by: Gav Wood <i@gavwood.com> Co-authored-by: Stanislav Tkach <stanislav.tkach@gmail.com> Co-authored-by: Robert Habermeier <rphmeier@gmail.com> Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com> Co-authored-by: Demi M. Obenour <demi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: NikVolf <nikvolf@gmail.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Benjamin Kampmann <ben@gnunicorn.org> Co-authored-by: Maciej Hirsz <hello@maciej.codes> Co-authored-by: cheme <emericchevalier.pro@gmail.com> Co-authored-by: adoerr <0xad@gmx.net> Co-authored-by: Jun Jiang <jasl9187@hotmail.com> Co-authored-by: Dan Shields <35669742+NukeManDan@users.noreply.github.com> Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com>
56 lines
2.3 KiB
TOML
56 lines
2.3 KiB
TOML
[package]
|
|
name = "polkadot-node-core-approval-voting"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Approval Voting Subsystem of the Polkadot node"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
|
schnellru = "0.2.1"
|
|
merlin = "3.0"
|
|
schnorrkel = "0.11.4"
|
|
kvdb = "0.13.0"
|
|
derive_more = "0.99.17"
|
|
thiserror = { workspace = true }
|
|
itertools = "0.10.5"
|
|
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-overseer = { path = "../../overseer" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-jaeger = { path = "../../jaeger" }
|
|
|
|
sc-keystore = { path = "../../../../substrate/client/keystore", default-features = false }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common", default-features = false }
|
|
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots", default-features = false }
|
|
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto", default-features = false, features = ["full_crypto"] }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
# rand_core should match schnorrkel
|
|
rand_core = "0.6.2"
|
|
rand_chacha = { version = "0.3.1" }
|
|
rand = "0.8.5"
|
|
|
|
[dev-dependencies]
|
|
async-trait = "0.1.74"
|
|
parking_lot = "0.12.1"
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
assert_matches = "1.4.0"
|
|
kvdb-memorydb = "0.13.0"
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
|
log = { workspace = true, default-features = true }
|
|
env_logger = "0.9.0"
|