mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 07:17:26 +00:00
a1c704d446
* feat bitfield distribution * feat bitfield distribution part 2 * pair programming with rustc & cargo * lets go * move bitfield-distribution to the node/network folder * shape shifting * lunchtime * ignore the two fn recursion for now * step by step * triplesteps * bandaid commit * unordered futures magic * chore * reword markdown * clarify * lacks abortable processing impl details * slimify * fix: warnings and avoid ctx.clone() improve comments * review comments * fix details * make sure outgoing messages are tracked * fix name * fix subsystem * partial test impl * relax context bounds * test * X * X * initial test * fix relay_message not tracked when origin is self * fix/guide: grammar Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * work around missing Eq+PartialEq * fix: add missing message to provisioner * unify per_job to job_data * fix/review: part one * fix/review: more grumbles * fix/review: track incoming messages per peer * fix/review: extract fn, avoid nested matches * fix/review: more tests, simplify test * fix/review: extend tests to cover more cases * chore/rename: Tracker -> ProtocolState * chore check and comment rewording * feat test: invalid peer message * remove ignored test cases and unused macros * fix master merge fallout + warnings Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-availability-bitfield-distribution"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.5"
|
|
futures-timer = "3.0.2"
|
|
log = "0.4.8"
|
|
streamunordered = "0.5.1"
|
|
codec = { package="parity-scale-codec", version = "1.3.0" }
|
|
node-primitives = { package = "polkadot-node-primitives", path = "../../primitives" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
polkadot-network-bridge = { path = "../../network/bridge" }
|
|
polkadot-network = { path = "../../../network" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem", features = [ "test-helpers" ] }
|
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
parking_lot = "0.10.0"
|
|
maplit = "1.0.2"
|
|
smol = "0.2.0"
|
|
smol-timeout = "0.1.0"
|
|
env_logger = "0.7.1"
|
|
assert_matches = "1.3.0" |