mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
472f08a251
* 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 * Revert "Rename squatted crates" This reverts commit 6387eabf3abb00e2a87a246d7a1bacc31e0e7798. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Dont publish parachain-info 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>
30 lines
1.0 KiB
TOML
30 lines
1.0 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
name = "parachain-info"
|
|
version = "0.1.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"cumulus-primitives-core/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|