Files
pezkuwi-subxt/cumulus/polkadot-parachains/pallets/parachain-info/Cargo.toml
T
2021-12-11 14:10:51 +01:00

27 lines
879 B
TOML

[package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
name = "parachain-info"
version = "0.1.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] }
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.131", optional = true, 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" }
cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
[features]
default = ["std"]
std = [
"codec/std",
"scale-info/std",
"serde",
"cumulus-primitives-core/std",
"frame-support/std",
"frame-system/std",
]