diff --git a/Cargo.toml b/Cargo.toml index 12a07fc..f989946 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "tracing-layer-win-eventlog" -version = "0.1.1" +version = "0.1.2" edition = "2021" author = ["itsscb "] description = "Layer for the tracing_subscriber to write to the Windows EventLog" keywords = ["tracing", "tracing_subscriber","layer","eventlog","windows"] license = "MIT" repository = "https://github.com/itsscb/tracing-layer-win-eventlog" +categories =["os::windows-apis"] [dependencies] tracing = "0.1.40" diff --git a/src/lib.rs b/src/lib.rs index c3bd618..a478dfc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,4 @@ mod eventlog; +#[cfg(windows)] pub use eventlog::EventLogLayer;