Files
pezkuwi-subxt/polkadot/node/test/performance-test/Cargo.toml
T
Lulu 31c79470a3 Rename squatted crates (#1241)
* Rename squatted crates

This commit adds the staging- prefix to squatted crates so we can go forward and publish them to crates.io.

Using the staging- prefix is a temp fix until we decide on replacement names.
https://forum.parity.io/t/renaming-squated-crates-in-substrate-polkadot-cumulus/1964/6

* Fix test after crate renames

* Update Lockfile
2023-08-30 17:57:49 +03:00

34 lines
952 B
TOML

[package]
name = "polkadot-performance-test"
publish = false
version = "1.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
thiserror = "1.0.31"
quote = "1.0.28"
env_logger = "0.9"
log = "0.4"
polkadot-node-core-pvf-prepare-worker = { path = "../../core/pvf/prepare-worker" }
polkadot-erasure-coding = { path = "../../../erasure-coding" }
polkadot-node-primitives = { path = "../../primitives" }
polkadot-primitives = { path = "../../../primitives" }
sc-executor-common = { path = "../../../../substrate/client/executor/common" }
sp-maybe-compressed-blob = { path = "../../../../substrate/primitives/maybe-compressed-blob" }
kusama-runtime = { package = "staging-kusama-runtime", path = "../../../runtime/kusama" }
[[bin]]
name = "gen-ref-constants"
path = "src/gen_ref_constants.rs"
[features]
runtime-benchmarks = [
"kusama-runtime/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
]