[package]
edition = "2024"
name = "etw-wrapper"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Strongly typed Event Tracing for Windows (ETW) logger generation"
documentation = "https://docs.rs/etw-wrapper"
readme = "README.md"
keywords = [
"etw",
"windows",
"tracing",
"logging",
]
categories = [
"os::windows-apis",
"api-bindings",
]
license = "ISC"
repository = "https://github.com/austinwagner/etw-wrapper-rs"
[features]
default = ["macro"]
macro = ["dep:etw-wrapper-macro"]
[lib]
name = "etw_wrapper"
path = "src/lib.rs"
[[example]]
name = "example"
path = "examples/example.rs"
[[test]]
name = "all_types"
path = "tests/all_types.rs"
[[test]]
name = "fieldref"
path = "tests/fieldref.rs"
[dependencies.etw-wrapper-macro]
version = "0.1"
optional = true
[dependencies.safe-sid]
version = "0.1"
[dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Etw",
"Win32_Security",
]
[dev-dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Etw",
"Win32_Security",
]