Update Cargo.toml

This commit is contained in:
itsscb 2025-06-04 12:10:38 +00:00
parent 8190e33ca6
commit 638a5ff7f7

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"