v0.1.2 - made crate windows only

This commit is contained in:
itsscb 2024-07-17 15:31:48 +02:00
parent 65a6acc0be
commit 246c99f85e
2 changed files with 3 additions and 1 deletions

View File

@ -1,12 +1,13 @@
[package]
name = "tracing-layer-win-eventlog"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
author = ["itsscb <dev@itsscb.de>"]
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"

View File

@ -1,3 +1,4 @@
mod eventlog;
#[cfg(windows)]
pub use eventlog::EventLogLayer;