mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
a6ee76a769
* Fix polkadot-runtime-constants std build * Fix kusama, rococo and westend constants std build * Code review fixes
27 lines
967 B
TOML
27 lines
967 B
TOML
[package]
|
|
name = "westend-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 = [
|
|
"frame-support/std",
|
|
"primitives/std",
|
|
"runtime-common/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-weights/std"
|
|
]
|