mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
39 lines
1.5 KiB
TOML
39 lines
1.5 KiB
TOML
[package]
|
|
name = "cumulus-pallet-solo-to-para"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Adds functionality to migrate from a Solo to a Parachain"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.3.1", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.40" }
|
|
|
|
# Cumulus
|
|
cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-sudo/std",
|
|
"polkadot-primitives/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|