Skip to content

Commit

Permalink
include force-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart committed Aug 14, 2024
1 parent 128c097 commit 04804b9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -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]
Expand Down
17 changes: 10 additions & 7 deletions chain-spec-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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",
]
3 changes: 3 additions & 0 deletions system-parachains/asset-hub-paseo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -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",
Expand All @@ -249,3 +251,4 @@ std = [
on-chain-release-build = ["sp-api/disable-logging"]

fast-runtime = []
force-debug = ["sp-debug-derive/force-debug"]

0 comments on commit 04804b9

Please sign in to comment.