mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
57b56770e0
* extract database from av-store itself * generalize approval-voting over database type * modes (without handling) and pruning old wakeups * rework approval importing * add our_approval_sig to ApprovalEntry * import assignment * guide updates for check-full-approval changes * some aux functions * send messages when becoming active. * guide: network bridge sends view updates only when done syncing * network bridge: send view updates only when done syncing * tests for new network-bridge behavior * add a test for updating approval entry with sig * fix some warnings * test load-all-blocks * instantiate new parachains DB * fix network-bridge empty view updates * tweak * fix wasm build, i think * Update node/core/approval-voting/src/lib.rs Co-authored-by: Andronik Ordian <write@reusable.software> * add some versioning to parachains_db * warnings * fix merge changes * remove versioning again Co-authored-by: Andronik Ordian <write@reusable.software>
44 lines
2.2 KiB
TOML
44 lines
2.2 KiB
TOML
[package]
|
|
name = "polkadot-node-core-approval-voting"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.8"
|
|
futures-timer = "3.0.2"
|
|
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["bit-vec", "derive"] }
|
|
tracing = "0.1.25"
|
|
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] }
|
|
merlin = "2.0"
|
|
schnorrkel = "0.9.1"
|
|
kvdb = "0.9.0"
|
|
derive_more = "0.99.1"
|
|
|
|
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-client-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.11.1"
|
|
rand_core = "0.5.1" # should match schnorrkel
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
maplit = "1.0.2"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
assert_matches = "1.4.0"
|
|
kvdb-memorydb = "0.9.0"
|