[package]
edition = "2024"
name = "slint_borderless_windows"
version = "0.1.1"
authors = ["Drew Chase"]
build = "build.rs"
links = "slint_borderless_windows"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Borderless window with a custom titlebar for Slint applications on Windows, with native DWM shadows, rounded corners, and resize hit-testing."
readme = "README.md"
keywords = [
"slint",
"windows",
"borderless",
"titlebar",
"dwm",
]
categories = [
"gui",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/Drew-Chase/slint_borderless_windows"
[lib]
name = "slint_borderless_windows"
path = "src/lib.rs"
[dependencies.i-slint-backend-winit]
version = "1.16.1"
[dependencies.slint]
version = "1.16.1"
features = ["backend-winit"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.windows]
version = "0.62.2"
[dependencies.winit]
version = "0.30.13"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
"Win32_UI_Controls",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
]