[package]
edition = "2024"
rust-version = "1.85"
name = "wintheon"
version = "0.1.0"
authors = ["Gabriela Cristei <cristei.g772@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library to discover, rank and inspect launchable Windows file entries."
homepage = "https://github.com/cristeigabriela/wintheon"
documentation = "https://docs.rs/wintheon"
readme = false
keywords = [
"windows",
"launcher",
"shortcut",
"icon",
"shell",
]
categories = [
"os::windows-apis",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cristeigabriela/wintheon"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[lib]
name = "wintheon"
path = "src/lib.rs"
[[example]]
name = "launcher"
path = "examples/launcher.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.png]
version = "0.18.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tracing]
version = "0.1.41"
[dependencies.wincorda]
version = "0.3.0"
[dependencies.windows]
version = "0.62.2"
features = [
"Win32_UI_Shell",
"Win32_UI_Controls",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Com",
"Win32_Storage_FileSystem",
"Win32_Foundation",
"Win32_Graphics_Gdi",
]
[dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Storage_FileSystem",
"Win32_Globalization",
"Win32_System_SystemServices",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_Security",
"Wdk_Storage_FileSystem",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_Graphics_Gdi",
]
[dev-dependencies.eframe]
version = "0.34.2"
[dev-dependencies.global-hotkey]
version = "0.7"
[dev-dependencies.mmap-io]
version = "0.9"
[dev-dependencies.tracing-subscriber]
version = "0.3.20"
features = ["env-filter"]
[dev-dependencies.wildmatch]
version = "2.6.1"