mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 18:47:56 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
25 lines
876 B
TOML
25 lines
876 B
TOML
[package]
|
|
name = "cumulus-primitives-proof-size-hostfunction"
|
|
version = "0.2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Hostfunction exposing storage proof size to the runtime."
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
sp-runtime-interface = { path = "../../../substrate/primitives/runtime-interface", default-features = false }
|
|
sp-externalities = { path = "../../../substrate/primitives/externalities", default-features = false }
|
|
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["sp-externalities/std", "sp-runtime-interface/std", "sp-trie/std"]
|