Skip to content

Commit

Permalink
compat msrv
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun committed Aug 11, 2024
1 parent 3859142 commit a1220b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/append/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
use std::fmt;

#[cfg(feature = "fastrace")]
pub use fastrace::FastraceEvent;
pub use self::fastrace::FastraceEvent;
#[cfg(feature = "opentelemetry")]
pub use opentelemetry::OpentelemetryLog;
pub use self::opentelemetry::OpentelemetryLog;
#[cfg(feature = "rolling_file")]
pub use rolling_file::RollingFile;
pub use stdio::Stderr;
pub use stdio::Stdout;
pub use self::rolling_file::RollingFile;
pub use self::stdio::Stderr;
pub use self::stdio::Stdout;

use crate::layout::IdenticalLayout;
use crate::layout::Layout;
Expand Down

0 comments on commit a1220b4

Please sign in to comment.