mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
0185170137
* update weights (0.9.33) (#6299) * kusama: update weights * polkadot: update weights * rococo: update weights * westend: update weights * fix deps * Resolve merge Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Reset Kusama whitelist weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
24 lines
900 B
TOML
24 lines
900 B
TOML
[package]
|
|
name = "test-runtime-constants"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = "1.8.0"
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false }
|
|
runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
sp-weights = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "master" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-weights/std"
|
|
]
|