From 638a5ff7f7e982af1d124ab6628a5a773b719a3d Mon Sep 17 00:00:00 2001 From: itsscb Date: Wed, 4 Jun 2025 12:10:38 +0000 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 828c646..0296a93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-layer-win-eventlog" -version = "0.1.3" +version = "1.0.0" edition = "2021" author = ["itsscb "] description = "Layer for the tracing_subscriber to write to the Windows EventLog" @@ -9,7 +9,14 @@ license = "MIT" repository = "https://github.com/itsscb/tracing-layer-win-eventlog" categories =["os::windows-apis"] +[dependencies.windows] +version = "0.61" +features = [ + "Win32_Security", + "Win32_System_EventLog" +] + [dependencies] tracing = "0.1.40" tracing-subscriber = "0.3.18" -winapi = { version = "0.3.9", features = ["fileapi", "handleapi", "winbase", "winnt"] } +windows-result = "0.3" \ No newline at end of file