mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
d5a7991429
* Use a `BoundedVec` in `ValidationResult` > Use a `BoundedVec` for `upward_messages` and `horizontal_messages` in order to > limit the number of individual messages/memory allocations right at decoding > time. The reason for this is that the `ValidationResult` may contain a code > upgrade (including a full PVF binary), so the total size limit can't be set > too low and this limit will still allow several millions of upward messages, > which will (due to the memory allocator overhead) already have a > non-negligible memory footprint in decoded form. * List all fields when hashing so we don't miss one * Define types for `BoundedVec`s of messages * Fix test compile errors * Depend on `bounded-collections` 0.1.4 (fixes allocation issue) * Fix compilation issue * Derive `Hash` instead of manual `impl` * Avoid use of unwrap
115 lines
5.5 KiB
TOML
115 lines
5.5 KiB
TOML
[package]
|
|
name = "polkadot-runtime-parachains"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
|
parity-scale-codec = { version = "3.3.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
log = { version = "0.4.17", default-features = false }
|
|
rustc-hex = { version = "2.1.0", default-features = false }
|
|
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.139", features = [ "derive" ], optional = true }
|
|
derive_more = "0.99.17"
|
|
bitflags = "1.3.2"
|
|
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
|
|
pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
xcm = { package = "xcm", path = "../../xcm", default-features = false }
|
|
xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false }
|
|
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
|
|
|
|
rand = { version = "0.8.5", default-features = false }
|
|
rand_chacha = { version = "0.3.1", default-features = false }
|
|
static_assertions = { version = "1.1.0", optional = true }
|
|
polkadot-parachain = { path = "../../parachain", default-features = false }
|
|
polkadot-runtime-metrics = { path = "../metrics", default-features = false}
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.21"
|
|
hex-literal = "0.3.4"
|
|
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"}
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
thousands = "0.2.0"
|
|
assert_matches = "1"
|
|
serde_json = "1.0.85"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
no_std = []
|
|
std = [
|
|
"bitvec/std",
|
|
"parity-scale-codec/std",
|
|
"rustc-hex/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"primitives/std",
|
|
"inherents/std",
|
|
"sp-core/std",
|
|
"sp-api/std",
|
|
"sp-keystore",
|
|
"sp-std/std",
|
|
"sp-io/std",
|
|
"frame-support/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-staking/std",
|
|
"pallet-authorship/std",
|
|
"pallet-babe/std",
|
|
"pallet-balances/std",
|
|
"pallet-session/std",
|
|
"pallet-staking/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-vesting/std",
|
|
"frame-system/std",
|
|
"xcm/std",
|
|
"xcm-executor/std",
|
|
"log/std",
|
|
"polkadot-runtime-metrics/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"primitives/runtime-benchmarks",
|
|
"static_assertions",
|
|
"sp-application-crypto",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-staking/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-vesting/try-runtime",
|
|
]
|
|
runtime-metrics = ["sp-tracing/with-tracing", "polkadot-runtime-metrics/runtime-metrics"]
|