File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ use tracing_core::{
100
100
/// [`level`]: tracing_core::Level
101
101
/// [`Metadata`]: tracing_core::Metadata
102
102
/// [`Targets`]: crate::filter::Targets
103
+ /// [`env_logger`]: https://crates.io/crates/env_logger
103
104
#[ cfg_attr( docsrs, doc( cfg( all( feature = "env-filter" , feature = "std" ) ) ) ) ]
104
105
#[ derive( Debug ) ]
105
106
pub struct EnvFilter {
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ pub use pretty::*;
153
153
/// DEBUG yak_shaving::shaver: some-span{field-on-span=foo}: started shaving yak
154
154
/// ```
155
155
///
156
+ /// [`layer::Context`]: crate::layer::Context
156
157
/// [`fmt::Layer`]: super::Layer
157
158
/// [`fmt::Subscriber`]: super::Subscriber
158
159
/// [`Event`]: tracing::Event
Original file line number Diff line number Diff line change 63
63
//! - `local-time`: Enables local time formatting when using the [`time`
64
64
//! crate]'s timestamp formatters with the `fmt` subscriber.
65
65
//!
66
+ //! [`registry`]: mod@registry
67
+ //!
66
68
//! ### Optional Dependencies
67
69
//!
68
70
//! - [`tracing-log`]: Enables better formatting for events emitted by `log`
80
82
//! used without requiring the Rust standard library, although some features are
81
83
//! disabled. Although most of the APIs provided by `tracing-subscriber`, such
82
84
//! as [`fmt`] and [`EnvFilter`], require the standard library, some
83
- //! functionality, such as the [`Subscribe `] trait, can still be used in
85
+ //! functionality, such as the [`Layer `] trait, can still be used in
84
86
//! `no_std` environments.
85
87
//!
86
88
//! The dependency on the standard library is controlled by two crate feature
156
158
//! [`env_logger` crate]: https://crates.io/crates/env_logger
157
159
//! [`parking_lot`]: https://crates.io/crates/parking_lot
158
160
//! [`time` crate]: https://crates.io/crates/time
161
+ //! [`libstd`]: https://doc.rust-lang.org/std/index.html
159
162
//! [`liballoc`]: https://doc.rust-lang.org/alloc/index.html
160
163
#![ doc( html_root_url = "https://docs.rs/tracing-subscriber/0.3.7" ) ]
161
164
#![ doc(
You can’t perform that action at this time.
0 commit comments