mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
5ffb8cb463
* bump version and substrate * update weights * bump substrate * cargo run --release --features=runtime-benchmarks -- benchmark --chain=polkadot-dev --steps=50 --repeat=20 --pallet=frame_system --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/polkadot/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=polkadot-dev --steps=50 --repeat=20 --pallet=pallet_election_provider_multi_phase --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/polkadot/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=pallet_election_provider_multi_phase --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=pallet_election_provider_multi_phase --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ Co-authored-by: Parity Benchmarking Bot <admin@parity.io>
61 lines
2.4 KiB
TOML
61 lines
2.4 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.8.29"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
|
|
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
|
|
# various unnecessary Substrate-specific endpoints.
|
|
parity-scale-codec = { version = "2.0.0", default-features = false, features = [ "derive" ] }
|
|
parity-util-mem = { version = "0.9.0", optional = true }
|
|
sp-std = { 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-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
|
|
derive_more = "0.99.11"
|
|
|
|
# all optional crates.
|
|
thiserror = { version = "1.0.22", optional = true }
|
|
serde = { version = "1.0.117", default-features = false, features = [ "derive" ], optional = true }
|
|
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
parking_lot = { version = "0.11.1", optional = true }
|
|
log = { version = "0.4.11", optional = true }
|
|
futures = { version = "0.3.8", optional = true }
|
|
static_assertions = { version = "1.1", optional = true }
|
|
libc = { version = "0.2.81", optional = true }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "unknown")))'.dependencies]
|
|
shared_memory = { version = "0.11.0", optional = true }
|
|
raw_sync = { version = "0.1", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasmtime = [ "sc-executor/wasmtime" ]
|
|
wasm-api = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"thiserror",
|
|
"serde/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"shared_memory",
|
|
"raw_sync",
|
|
"sp-core/std",
|
|
"parking_lot",
|
|
"static_assertions",
|
|
"log",
|
|
"libc",
|
|
"parity-util-mem",
|
|
"sp-externalities",
|
|
"sc-executor",
|
|
"sp-io",
|
|
"polkadot-core-primitives/std",
|
|
"futures",
|
|
]
|