mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
0142a01353
* Add license to crates This is required to publish to crates.io * Add more licenses
28 lines
993 B
TOML
28 lines
993 B
TOML
[package]
|
|
name = "westend-runtime-constants"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = "1.11.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"
|
|
]
|