mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
7b46856159
* statement table yields fully-attested candidates * attestation types in polkadot-primitives * propose block with fully-attested candidates in consensus * some signature-checking logic in the runtime * fix runtime compilation * ensure attestations are full and without duplicate when checking * fix consensus-service compilation * add some tests * use bitvec from crates.io now that it's published * sign statements based on primitive statement's encoding * remove some serialize bounds * Fix error message with duplicate availability attestations Co-Authored-By: rphmeier <rphmeier@gmail.com>
40 lines
2.2 KiB
TOML
40 lines
2.2 KiB
TOML
[package]
|
|
name = "polkadot-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
bitvec = { version = "0.8", default-features = false, features = ["alloc"] }
|
|
integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
|
|
polkadot-primitives = { path = "../../primitives", default-features = false }
|
|
safe-mix = { version = "1.0", default-features = false }
|
|
parity-codec = { version = "2.1", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-std = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-io = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-support = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-balances = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-consensus = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-council = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-democracy = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-executive = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-session = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-system = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
srml-treasury = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
sr-version = { git = "https://github.com/paritytech/substrate", default-features = false }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
|
|
[workspace]
|
|
members = []
|