winlog2 0.3.2

A simple Rust log backend to send messages to the Windows event log.
Documentation
[build-dependencies.winresource]
version = "0.1"

[dependencies.env_logger]
default-features = false
optional = true
version = "0.11"

[dependencies.log]
features = ["std"]
version = "0.4"

[dependencies.thiserror]
version = "2"

[dependencies.widestring]
version = "1"

[dependencies.windows-sys]
features = ["Win32_System_EventLog"]
version = "0.59"

[dependencies.winreg]
version = "0.55"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.scopeguard]
version = "1"

[lib]
name = "winlog2"
path = "src/lib.rs"

[package]
authors = ["Jeroen C. van Gelderen <jeroen@vangelderen.org>", "Berrysoft <Strawberry_Str@hotmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["development-tools::debugging", "os::windows-apis"]
description = "A simple Rust log backend to send messages to the Windows event log."
documentation = "https://github.com/Berrysoft/winlog"
edition = "2021"
homepage = "https://github.com/Berrysoft/winlog"
keywords = ["eventlog", "logging", "windows"]
license = "MIT OR Apache-2.0"
name = "winlog2"
readme = "README.md"
repository = "https://github.com/Berrysoft/winlog"
version = "0.3.2"

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"

[[test]]
name = "end-to-end"
path = "tests/end-to-end.rs"