From 7f978af72d52261777640e3ac4e891abe6aa1e5c Mon Sep 17 00:00:00 2001 From: Brian Jesse Date: Wed, 20 Nov 2024 16:17:53 +0100 Subject: [PATCH] docs: Add `Unbug` to the list of related crates --- README.md | 2 ++ tracing/src/lib.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 7bc9b7fcd..bfc8333d8 100644 --- a/README.md +++ b/README.md @@ -406,6 +406,7 @@ are not maintained by the `tokio` project. These include: - [`reqwest-tracing`] provides a middleware to trace [`reqwest`] HTTP requests. - [`tracing-cloudwatch`] provides a layer that sends events to AWS CloudWatch Logs. - [`clippy-tracing`] provides a tool to add, remove and check for `tracing::instrument`. +- [`Unbug`] provides helper macros for programmatically invoking debugger breakpoints (if you're the maintainer of a `tracing` ecosystem crate not in this list, please let us know!) @@ -451,6 +452,7 @@ please let us know!) [`reqwest`]: https://crates.io/crates/reqwest [`tracing-cloudwatch`]: https://crates.io/crates/tracing-cloudwatch [`clippy-tracing`]: https://crates.io/crates/clippy-tracing +[`Unbug`]: https://github.com/greymattergames/unbug/ **Note:** that some of the ecosystem crates are currently unreleased and undergoing active development. They may be less stable than `tracing` and diff --git a/tracing/src/lib.rs b/tracing/src/lib.rs index 0b403f3b2..aff0e32be 100644 --- a/tracing/src/lib.rs +++ b/tracing/src/lib.rs @@ -818,6 +818,7 @@ //! - [`tracing-cloudwatch`] provides a layer that sends events to AWS CloudWatch Logs. //! - [`clippy-tracing`] provides a tool to add, remove and check for `tracing::instrument`. //! - [`json-subscriber`] provides a subscriber for emitting JSON logs. The output can be customized much more than with [`tracing-subscriber`]'s JSON output. +//! - [`Unbug`] provides helper macros for programmatically invoking debugger breakpoints //! //! If you're the maintainer of a `tracing` ecosystem crate not listed above, //! please let us know! We'd love to add your project to the list! @@ -862,6 +863,7 @@ //! [`tracing-cloudwatch`]: https://crates.io/crates/tracing-cloudwatch //! [`clippy-tracing`]: https://crates.io/crates/clippy-tracing //! [`json-subscriber`]: https://crates.io/crates/json-subscriber +//! [`Unbug`]: https://github.com/greymattergames/unbug/ //! //!
//!