[package]
name = "glutton-runtime"
version = "1.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
description = "glutton-runtime"
[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-benchmarking = { optional = true, default-features = false, version = "22.0.0" }
frame-executive = { default-features = false, version = "22.0.0" }
frame-support = { default-features = false, version = "22.0.0" }
frame-system = { default-features = false, version = "22.0.0" }
frame-system-rpc-runtime-api = { default-features = false, version = "20.0.0" }
frame-system-benchmarking = { optional = true, default-features = false, version = "22.0.0" }
frame-try-runtime = { default-features = false, optional = true, version = "0.28.0" }
pallet-glutton = { default-features = false, optional = true, version = "8.0.0" }
pallet-sudo = { default-features = false, optional = true, version = "22.0.0" }
sp-api = { default-features = false, version = "20.0.0" }
sp-block-builder = { default-features = false, version = "20.0.0" }
sp-core = { default-features = false, version = "22.0.0" }
sp-inherents = { default-features = false, version = "20.0.0" }
sp-offchain = { default-features = false, version = "20.0.0" }
sp-runtime = { default-features = false, version = "25.0.0" }
sp-session = { default-features = false, version = "21.0.0" }
sp-std = { default-features = false, version = "9.0.0" }
sp-transaction-pool = { default-features = false, version = "20.0.0" }
sp-version = { default-features = false, version = "23.0.0" }
xcm = { package = "staging-xcm", default-features = false, version = "1.0.0" }
xcm-builder = { package = "staging-xcm-builder", default-features = false, version = "1.0.0" }
xcm-executor = { package = "staging-xcm-executor", default-features = false, version = "1.0.0" }
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, version = "0.1.0" }
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false, version = "0.1.0" }
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false, version = "0.1.0" }
parachain-info = { package = "staging-parachain-info", path = "../../../pallets/parachain-info", default-features = false, version = "0.1.0" }
parachains-common = { path = "../../../common", default-features = false, version = "1.0.0" }
[build-dependencies]
substrate-wasm-builder = { version = "11.0.0" }
[features]
default = [ "std" ]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-glutton/runtime-benchmarks",
"cumulus-pallet-parachain-system/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
]
std = [
"codec/std",
"scale-info/std",
"frame-executive/std",
"frame-support/std",
"frame-system/std",
"frame-system-rpc-runtime-api/std",
"pallet-glutton/std",
"pallet-sudo/std",
"sp-api/std",
"sp-block-builder/std",
"sp-core/std",
"sp-inherents/std",
"sp-offchain/std",
"sp-runtime/std",
"sp-session/std",
"sp-std/std",
"sp-transaction-pool/std",
"sp-version/std",
"xcm-builder/std",
"xcm-executor/std",
"xcm/std",
"cumulus-pallet-parachain-system/std",
"cumulus-pallet-xcm/std",
"cumulus-primitives-core/std",
"parachain-info/std",
"parachains-common/std",
]
try-runtime = [
"frame-executive/try-runtime",
"frame-try-runtime/try-runtime",
"pallet-glutton/try-runtime",
"pallet-sudo/try-runtime",
]