Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonsaiden/debug_stub_derive
A drop-in replacement for #[derive(Debug)] with support for members which do not implement `fmt::Debug`.
https://github.com/bonsaiden/debug_stub_derive
Last synced: about 2 months ago
JSON representation
A drop-in replacement for #[derive(Debug)] with support for members which do not implement `fmt::Debug`.
- Host: GitHub
- URL: https://github.com/bonsaiden/debug_stub_derive
- Owner: BonsaiDen
- License: apache-2.0
- Created: 2017-05-12T22:28:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T14:41:30.000Z (about 5 years ago)
- Last Synced: 2024-11-07T19:55:17.627Z (2 months ago)
- Language: Rust
- Homepage: https://docs.rs/debug_stub_derive/
- Size: 20.5 KB
- Stars: 23
- Watchers: 3
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# debug-stub-derive
[![debug-stub-derive on crates.io][cratesio-image]][cratesio]
[![debug-stub-derive on docs.rs][docsrs-image]][docsrs][cratesio-image]: https://img.shields.io/crates/v/debug_stub_derive.svg
[cratesio]: https://crates.io/crates/debug_stub_derive
[docsrs-image]: https://docs.rs/debug_stub_derive/badge.svg?version=0.3.0
[docsrs]: https://docs.rs/debug_stub_derive/0.3.0/A drop-in replacement for `#[derive(Debug)]`
that supports replacement values for members which do not implement
[`fmt::Debug`](https://doc.rust-lang.org/std/fmt/trait.Debug.html).## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
debug_stub_derive = "0.3.0"
```and this to your crate root:
```rust
#[macro_use]
extern crate debug_stub_derive;
```## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you shall be dual licensed as above, without any
additional terms or conditions.