sp-debug-derive: Add force-debug feature (#9996)

* sp-debug-derive: Add `force-debug` feature

Sometimes users want to have proper debug information even inside the
wasm runtime, when they use `RuntimeDebug`. To not fork Substrate to
change a type to a normal `Debug` derive, this pr introduces the
`force-debug` feature. This feature can be enabled by the user in their
runtime and then the types will use the normal Debug derive instead of
printing `wasm:stripped`.

* Fixes
This commit is contained in:
Bastian Köcher
2021-10-12 12:33:43 +02:00
committed by GitHub
parent 98c157886c
commit d0c480c79f
4 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
serde = { version = "1.0.126", optional = true, features = ["derive"] }
impl-serde = { version = "0.3.1", optional = true }
ref-cast = "1.0.0"
sp-debug-derive = { version = "3.0.0", path = "../debug-derive" }
sp-debug-derive = { version = "3.0.0", default-features = false, path = "../debug-derive" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
[features]
default = [ "std" ]
std = [ "sp-std/std", "serde", "impl-serde", "codec/std" ]
std = [ "sp-std/std", "serde", "impl-serde", "codec/std", "sp-debug-derive/std" ]