[package]
edition = "2018"
rust-version = "1.58.0"
name = "eventlog"
version = "0.4.0"
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
build = "build.rs"
exclude = [
".github",
".efiles",
".gitattributes",
".gitignore",
".gitlab-ci.yml",
"tests",
"bacon.toml",
"CHANGELOG.md",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A log-compatible wrapper around the Windows Event Log API"
readme = "README.md"
keywords = [
"eventlog",
"logging",
"windows",
]
categories = [
"development-tools::debugging",
"os::windows-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/locryus/eventlog"
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
default-target = "x86_64-pc-windows-gnu"
targets = ["x86_64-pc-windows-gnu"]
[lib]
name = "eventlog"
path = "src/lib.rs"
[dependencies.log]
version = "0.4.17"
features = ["std"]
[dependencies.thiserror]
version = "1.0.38"
[dependencies.windows]
version = "0.58"
features = [
"Win32_Foundation",
"Win32_System_EventLog",
"Win32_Security",
"Win32_System_Diagnostics",
"Win32_System_Diagnostics_Debug",
]
[dependencies.windows-registry]
version = "0.6.1"
[dependencies.windows-result]
version = "0.4.1"
[dev-dependencies.rand]
version = "0.10.0"
[build-dependencies.regex]
version = "1.7.1"
features = [
"std",
"unicode-perl",
]
default-features = false
[build-dependencies.sha2]
version = "0.10.6"
[lints.clippy]
multiple_crate_versions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1