[package]
edition = "2024"
rust-version = "1.88"
name = "iced-window-chrome"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native-only window chrome patches for iced on Windows, macOS, and Linux"
documentation = "https://docs.rs/iced-window-chrome"
readme = "README.md"
keywords = [
"iced",
"gui",
"window",
"desktop",
"native",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/HunterDeVillez/iced-window-chrome"
[lib]
name = "iced_window_chrome"
path = "src/lib.rs"
[[example]]
name = "chrome-lab"
path = "examples/chrome_lab.rs"
[[example]]
name = "custom_titlebar"
path = "examples/custom_titlebar.rs"
[dependencies.iced]
version = "0.14.0"
[dependencies.raw-window-handle]
version = "0.6.2"
[target.'cfg(target_os = "linux")'.dependencies.x11rb]
version = "0.13.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.4"
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-core-foundation]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3.2"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61.2"
features = [
"Wdk_System_SystemServices",
"Win32_Foundation",
"Win32_Graphics_Dwm",
"Win32_System_SystemInformation",
"Win32_UI_WindowsAndMessaging",
]