mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
60c3ccfd62
* before adding seedling client side * seedling runtime compiles * create seedling spec script added * seedling node & BaseCallFilter fixes * update AllPalets * formatting * CallFilter + SignedExtra + AccountData fix * XCM removed * cleanup * solo-to-para pallet added & before testing * fix runtime upgrade method * soloToPara pallet + set header * clean up * clean up 2 * signed extension check sudo added * fmt + cleanup * Refac code and fixes * fmt * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * small fixes * OnValidationData used * small changes * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * OnValidationData replaced by OnSystemEvent * fmt + cargo fix * disable-default-bootnodes for seedling script Co-authored-by: Ricardo Rius <ricardo@parity.io> Co-authored-by: Ricardo Rius <9488369+riusricardo@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
69 lines
3.2 KiB
TOML
69 lines
3.2 KiB
TOML
[package]
|
|
name = 'seedling-runtime'
|
|
version = '0.1.0'
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.132", optional = true, features = ["derive"] }
|
|
|
|
# Substrate dependencies
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system", default-features = false }
|
|
cumulus-pallet-solo-to-para = { path = "../../pallets/solo-to-para", default-features = false }
|
|
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"log/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
"sp-io/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-version/std",
|
|
"sp-offchain/std",
|
|
"sp-session/std",
|
|
"sp-block-builder/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-inherents/std",
|
|
"frame-support/std",
|
|
"frame-executive/std",
|
|
"frame-system/std",
|
|
"pallet-sudo/std",
|
|
"pallet-balances/std",
|
|
"parachain-info/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-solo-to-para/std",
|
|
"cumulus-primitives-core/std",
|
|
]
|