mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
7c8804c049
* benchmarks for fungibles * add benchmark to westend * fix hex * clean up a bit * update code doc * fix warnings * cargo run --quiet --release --features runtime-benchmarks -- benchmark --chain=westend-dev --pallet=pallet_xcm_benchmarks::fungible --extrinsic=* --steps=10 --repeat=10 --template=./xcm/pallet-xcm-benchmarks/template.hbs --output=./ --execution=wasm --wasm-execution=compiled * use skip * fix spelling * Update Cargo.lock * add scale-info * Update Cargo.lock * update bench * cargo run --quiet --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=pallet_xcm_benchmarks::fungible --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --template=./xcm/pallet-xcm-benchmarks/template.hbs --output=./runtime/westend/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs * weights compile * update westend to use weights * fmt * spelling fixes * Delete pallet_xcm_benchmarks::fungible.rs * Apply suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * fix code review * update weight * fix report_error * fix spell check Co-authored-by: Parity Bot <admin@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
24 lines
687 B
TOML
24 lines
687 B
TOML
[package]
|
|
name = "xcm"
|
|
version = "0.9.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "The basic XCM datastructures."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
impl-trait-for-tuples = "0.2.0"
|
|
parity-scale-codec = { version = "2.3.0", default-features = false, features = [ "derive" ] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
derivative = {version = "2.2.0", default-features = false, features = [ "use_core" ] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
xcm-procedural = { path = "procedural" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
runtime-benchmarks = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
]
|