Skip to content

Commit 5d0b53b

Browse files
authored
Removing fmt::Debug impls (#71)
1 parent 094d314 commit 5d0b53b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,19 @@ flag:
163163
$ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build --release
164164
```
165165

166+
# Remove `fmt::Debug`
167+
168+
![Minimum Rust: Nightly](https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg)
169+
170+
With the [`-Zfmt-debug`](https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/fmt-debug.html) flag you can turn `#[derive(Debug)]`
171+
and [`{:?}`](https://doc.rust-lang.org/stable/std/fmt/trait.Debug.html) formatting into no-ops.
172+
This will ruin output of `dbg!()`, `assert!()`, `unwrap()`, etc., and may break code that unwisely relies on
173+
the debug formatting, but it will remove derived `fmt` functions and their strings.
174+
175+
```bash
176+
$ RUSTFLAGS="-Zfmt-debug=none" cargo +nightly build --release
177+
```
178+
166179
# Optimize `libstd` with `build-std`
167180

168181
![Minimum Rust: Nightly](https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg)

0 commit comments

Comments
 (0)