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