mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 02:51:08 +00:00
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:
@@ -22,6 +22,12 @@ syn = "1.0.80"
|
||||
proc-macro2 = "1.0"
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
std = []
|
||||
# By default `RuntimeDebug` implements `Debug` that outputs `<wasm:stripped>` when `std` is
|
||||
# disabled. However, sometimes downstream users need to have the real `Debug` implementation for
|
||||
# debugging purposes. If this is required, a user only needs to add this crate as a dependency of
|
||||
# their runtime and enable the `force-debug` feature.
|
||||
force-debug = []
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user