[package] name = "cumulus-pallet-solo-to-para" version = "0.1.0" authors = ["Parity Technologies "] edition = "2021" description = "Adds functionality to migrate from a Solo to a Parachain" [dependencies] # Substrate dependencies 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-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Cumulus dependencies cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" } cumulus-primitives-core = { path = "../../primitives/core", default-features = false } # Polkadot dependecies polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } # Other Dependencies codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.0.0", default-features = false, features = ["derive"] } [features] default = [ "std" ] std = [ "codec/std", "scale-info/std", "pallet-sudo/std", "cumulus-pallet-parachain-system/std", "cumulus-primitives-core/std", "polkadot-primitives/std", "frame-support/std", "sp-runtime/std", "sp-std/std", "frame-system/std", ]