Skip to content

Commit

Permalink
remove invalid doc attr
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbarsky committed Sep 21, 2023
1 parent ae007f9 commit a42b9de
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tracing-subscriber/src/fmt/time/mod.rs
Expand Up @@ -9,24 +9,19 @@ mod datetime;
mod time_crate;

#[cfg(feature = "time")]
#[cfg_attr(docsrs, doc(cfg(feature = "time")))]
pub use time_crate::UtcTime;

#[cfg(feature = "local-time")]
#[cfg_attr(docsrs, doc(cfg(all(unsound_local_offset, feature = "local-time"))))]
pub use time_crate::LocalTime;

/// [`chrono`]-based implementation for [`FormatTime`].
#[cfg(feature = "chrono")]
#[cfg_attr(docsrs, doc(feature = "local-time"))]
mod chrono_crate;

#[cfg(feature = "chrono")]
#[cfg_attr(docsrs, doc(feature = "chrono"))]
pub use chrono_crate::ChronoLocal;

#[cfg(feature = "chrono")]
#[cfg_attr(docsrs, doc(feature = "chrono"))]
pub use chrono_crate::ChronoUtc;

/// A type that can measure and format the current time.
Expand Down

0 comments on commit a42b9de

Please sign in to comment.