mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-07 02:37:22 +00:00
b170d9674f
* Update claim statements * Update URLs * Minor tweak to make enum agree with URL * final html multihashes * New hashes * Version * updated SAFT statement hash * Update runtimes; this relies on substrate #6131 * Bump * Share transaction filterer and fix Kusama * Warning * Gah! * Tidy * Westend fixes * Westend fix * Tweak constants * Implement TCF stuff * Fix * Warning * 15 minute lookahead * 15 minute lookahead in Polkadot * update max transactions * Enable utility, disable vested_transfer * Update runtime/common/src/lib.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Filter calls for validate unsigned also * Deduplicate * Fix * Introduce Polkadot (mainnet) chainspec * Fix naming. * Enable indices and fix comment. * Fix compilation * Enable indices and fix comment. * polkadot: babe: enable secondary VRF slots * Test JSON * Allow set_heads * Fix * Raw chain spec added Co-authored-by: keorn <github@i.keorn.org> Co-authored-by: NikVolf <nikvolf@gmail.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> Co-authored-by: Tomasz Drwięga <tomasz@parity.io> Co-authored-by: André Silva <andre.beat@gmail.com>
42 lines
2.7 KiB
TOML
42 lines
2.7 KiB
TOML
[package]
|
|
name = "polkadot-validation"
|
|
version = "0.8.0-pre"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.4"
|
|
futures-timer = "2.0"
|
|
parking_lot = "0.9.0"
|
|
tokio = { version = "0.2.13", features = ["rt-core", "blocking"] }
|
|
derive_more = "0.14.1"
|
|
log = "0.4.8"
|
|
exit-future = "0.2.0"
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
|
availability_store = { package = "polkadot-availability-store", path = "../availability-store" }
|
|
parachain = { package = "polkadot-parachain", path = "../parachain" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-erasure-coding = { path = "../erasure-coding" }
|
|
table = { package = "polkadot-statement-table", path = "../statement-table" }
|
|
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
consensus = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
block-builder = { package = "sc-block-builder", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
|
runtime_babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-proposer-metrics = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|