[package]
edition = "2021"
name = "windows-eventlog-native"
version = "0.1.0-dev"
authors = ["zevs"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native EvtQuery/EvtNext/EvtRender/EvtSubscribe wrapper for local Windows Event Log channels."
readme = "README.md"
license = "MIT"
repository = "https://github.com/icedracon/windows-eventlog-native"
[lib]
name = "windows_eventlog_native"
path = "src/lib.rs"
[[test]]
name = "smoke_query"
path = "tests/smoke_query.rs"
[[test]]
name = "xml_parse"
path = "tests/xml_parse.rs"
[[test]]
name = "xpath_builder"
path = "tests/xpath_builder.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
"serde",
]
default-features = false
[dependencies.quick-xml]
version = "0.36"
[dependencies.thiserror]
version = "2"
[dependencies.windows]
version = "0.61"
features = [
"Win32_System_EventLog",
"Win32_Foundation",
]
[dependencies.windows-core]
version = "0.61"
[target."cfg(not(windows))".dependencies]