win-context-menu 0.1.4

Show and interact with Windows Explorer context menus programmatically
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "win-context-menu"
version = "0.1.4"
authors = ["cignoir"]
build = false
exclude = [
    "/.github/",
    "/target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Show and interact with Windows Explorer context menus programmatically"
homepage = "https://github.com/cignoir/win-context-menu"
documentation = "https://docs.rs/win-context-menu"
readme = "README.md"
keywords = [
    "windows",
    "context-menu",
    "shell",
    "explorer",
    "com",
]
categories = [
    "os::windows-apis",
    "gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cignoir/win-context-menu"

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

[features]
default = []
ffi = ["dep:serde_json"]
serde = ["dep:serde"]
tracing = ["dep:tracing"]

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

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "enumerate"
path = "examples/enumerate.rs"

[[example]]
name = "extended"
path = "examples/extended.rs"

[[example]]
name = "folder_background"
path = "examples/folder_background.rs"

[[example]]
name = "multi_select"
path = "examples/multi_select.rs"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.windows]
version = "0.58"
features = [
    "Win32_Foundation",
    "Win32_System_Com",
    "Win32_UI_Shell",
    "Win32_UI_Shell_Common",
    "Win32_UI_WindowsAndMessaging",
    "Win32_Graphics_Gdi",
    "Win32_System_Memory",
    "Win32_System_Ole",
    "Win32_System_Registry",
]

[lints.clippy]
missing_safety_doc = "warn"
undocumented_unsafe_blocks = "warn"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
unsafe_op_in_unsafe_fn = "warn"