[package]
edition = "2024"
rust-version = "1.95"
name = "windows-implement"
version = "0.100.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The implement macro for the Windows crates"
readme = "readme.md"
categories = ["os::windows-apis"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/microsoft/windows-rs"
[package.metadata.docs.rs]
targets = []
[lib]
name = "windows_implement"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
default-features = false
[dependencies.quote]
version = "1.0"
default-features = false
[dependencies.syn]
version = "2.0"
features = [
"parsing",
"proc-macro",
"printing",
"full",
"clone-impls",
]
default-features = false
[dev-dependencies]
[lints.clippy]
assigning_clones = "warn"
cloned_instead_of_copied = "warn"
explicit_iter_loop = "warn"
implicit_clone = "warn"
manual_assert = "warn"
manual_c_str_literals = "allow"
manual_let_else = "warn"
manual_string_new = "warn"
map_unwrap_or = "warn"
redundant_clone = "warn"
semicolon_if_nothing_returned = "warn"
single_match_else = "warn"
type_complexity = "allow"
uninlined_format_args = "warn"
use_self = "warn"
[lints.rust]
missing_unsafe_on_extern = "warn"
unused_qualifications = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(windows_slim_errors, windows_cast_diagnostics)"]