diff --git a/Cargo.toml b/Cargo.toml index 0113b7f..6eded65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ version = "1.0.0" authors = ["Paseo Core Team"] edition = "2021" repository = "https://github.com/paseo-network/runtimes.git" -license = "Apache License v2" # TODO +license = "Apache License v2" # TODO [workspace.dependencies] assert_matches = { version = "1.5.0" } @@ -190,10 +190,10 @@ paseo-runtime-constants = { package = "paseo-runtime-constants", path = "relay/p resolver = "2" members = [ - "chain-spec-generator", - "relay/paseo", - "relay/paseo/constants", - "system-parachains/asset-hub-paseo" + "chain-spec-generator", + "relay/paseo", + "relay/paseo/constants", + "system-parachains/asset-hub-paseo", ] [profile.release] diff --git a/chain-spec-generator/Cargo.toml b/chain-spec-generator/Cargo.toml index 3a04268..097b8e3 100644 --- a/chain-spec-generator/Cargo.toml +++ b/chain-spec-generator/Cargo.toml @@ -7,9 +7,9 @@ repository.workspace = true license.workspace = true [dependencies] -clap = { features = [ "derive" ] , workspace = true } +clap = { features = ["derive"], workspace = true } serde_json = { workspace = true } -serde = { features = ["derive"] , workspace = true } +serde = { features = ["derive"], workspace = true } hex-literal = "0.4.1" paseo-runtime = { path = "../relay/paseo" } @@ -32,10 +32,13 @@ parachains-common = { workspace = true, default-features = true } cumulus-primitives-core = { workspace = true, default-features = true } [features] -fast-runtime = [ - "paseo-runtime/fast-runtime" -] +fast-runtime = ["paseo-runtime/fast-runtime"] runtime-benchmarks = [ - "paseo-runtime/runtime-benchmarks", - "asset-hub-paseo-runtime/runtime-benchmarks", + "paseo-runtime/runtime-benchmarks", + "asset-hub-paseo-runtime/runtime-benchmarks", +] + +force-debug = [ + "paseo-runtime/force-debug", + "asset-hub-paseo-runtime/force-debug", ] diff --git a/system-parachains/asset-hub-paseo/Cargo.toml b/system-parachains/asset-hub-paseo/Cargo.toml index 33ec0cb..2f0ee25 100644 --- a/system-parachains/asset-hub-paseo/Cargo.toml +++ b/system-parachains/asset-hub-paseo/Cargo.toml @@ -48,6 +48,7 @@ pallet-utility = { workspace = true } sp-api = { workspace = true } sp-block-builder = { workspace = true } sp-consensus-aura = { workspace = true } +sp-debug-derive = { workspace = true } sp-core = { workspace = true } sp-genesis-builder = { workspace = true } sp-io = { workspace = true } @@ -226,6 +227,7 @@ std = [ "sp-block-builder/std", "sp-consensus-aura/std", "sp-core/std", + "sp-debug-derive/std", "sp-genesis-builder/std", "sp-inherents/std", "sp-offchain/std", @@ -249,3 +251,4 @@ std = [ on-chain-release-build = ["sp-api/disable-logging"] fast-runtime = [] +force-debug = ["sp-debug-derive/force-debug"]