Files
pezkuwi-subxt/substrate/primitives/debug-derive/Cargo.toml
T
Liam Aharon 3717ec3802 Sync Cargo.toml and crates.io versions (#3034)
Related https://github.com/paritytech/polkadot-sdk/issues/3032

---

Using https://github.com/liamaharon/cargo-workspace-version-tools/ 

`cargo run -- sync --path ../polkadot-sdk`

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
2024-01-26 18:14:03 +00:00

36 lines
908 B
TOML

[package]
name = "sp-debug-derive"
version = "14.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage = "https://substrate.io"
repository.workspace = true
description = "Macros to derive runtime debug implementation."
documentation = "https://docs.rs/sp-debug-derive"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
[dependencies]
quote = "1.0.28"
syn = "2.0.48"
proc-macro2 = "1.0.56"
[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]