1.1.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseConvert any serde::Serialize into a std::fmt::Debug:
fn takes_serialize(v: impl Serialize) {
dbg!(serde_fmt::to_debug(&v));
// Do something with `v`
}This library requires a Rust compiler that's at least 1.42.0.
Add serde_fmt to your Cargo.toml:
[dependencies.serde_fmt]
version = "1.1.0"By default, this library will depend on the standard library. To use it in no-std environments, you can disable the default crate features:
[dependencies.serde_fmt]
version = "1.1.0"
default-features = false