mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
8cb7cdbc64
* Introduce mandatory statement signing into claims * Introduce SignedExtension * Tests passing * Bump runtime version * Bump version, fix test * Test for validate * Another couple of tests * Enable PrevalidateAttests on Polkadot * Enable PrevalidateAttests on Polkadot * Fix build * Fixes * More fixes * Fix bench tests * Fix & test Preclaim clobbering. * Fix for errant claim logic * Add test * Update tests, always use Vec as input * mint_claim can add signature, some_benchmarks * Add claim with statement test * finish benchmarks * put the correct number of claims with benchmarks * fix compiler warning * Update weights * Weight comments for validation Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
33 lines
1.4 KiB
TOML
33 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-network"
|
|
version = "0.7.34-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot-specific networking protocol"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.4.12"
|
|
bytes = "0.5"
|
|
parking_lot = "0.9.0"
|
|
derive_more = "0.14.1"
|
|
av_store = { package = "polkadot-availability-store", path = "../availability-store" }
|
|
polkadot-validation = { path = "../validation" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-erasure-coding = { path = "../erasure-coding" }
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = "0.3.4"
|
|
log = "0.4.8"
|
|
exit-future = "0.2.0"
|
|
futures-timer = "2.0"
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
wasm-timer = "0.2.4"
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|