We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df5ff68 commit a969f5fCopy full SHA for a969f5f
2 files changed
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
### Added
10
- Better error messages
11
- no_std support
12
+- `CustomDebug` alias for `Debug`
13
14
### Changed
15
- BREAKING: upgrade from edition 2018 to edition 2021
src/lib.rs
@@ -1,6 +1,8 @@
1
#![no_std]
2
use core::fmt;
3
4
+/// Alias of [Debug]
5
+pub use custom_debug_derive::Debug as CustomDebug;
6
pub use custom_debug_derive::*;
7
8
/// Formats a buffer as hex using \xNN notation.
0 commit comments