Port to windows-rs & opiniated changes to default eventid/message format #1

Merged
itsscb merged 3 commits from pr4-darklajid into master 2025-06-04 12:11:38 +00:00
Showing only changes of commit 638a5ff7f7 - Show all commits

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tracing-layer-win-eventlog" name = "tracing-layer-win-eventlog"
version = "0.1.3" version = "1.0.0"
edition = "2021" edition = "2021"
author = ["itsscb <dev@itsscb.de>"] author = ["itsscb <dev@itsscb.de>"]
description = "Layer for the tracing_subscriber to write to the Windows EventLog" 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" repository = "https://github.com/itsscb/tracing-layer-win-eventlog"
categories =["os::windows-apis"] categories =["os::windows-apis"]
[dependencies.windows]
version = "0.61"
features = [
"Win32_Security",
"Win32_System_EventLog"
]
[dependencies] [dependencies]
tracing = "0.1.40" tracing = "0.1.40"
tracing-subscriber = "0.3.18" tracing-subscriber = "0.3.18"
winapi = { version = "0.3.9", features = ["fileapi", "handleapi", "winbase", "winnt"] } windows-result = "0.3"