[package]
edition = "2021"
rust-version = "1.70"
name = "tauri-plugin-decoration"
version = "2.0.2"
authors = ["oovz"]
build = "build.rs"
links = "tauri-plugin-decoration"
exclude = [
"/examples",
"/webview-dist",
"/webview-src",
"/node_modules",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native window controls, custom decorations, and Windows 11 Snap Layout for Tauri v2 apps."
homepage = "https://github.com/oovz/tauri-plugin-decoration"
readme = "README.md"
license = "MIT"
repository = "https://github.com/oovz/tauri-plugin-decoration"
[lib]
name = "tauri_plugin_decoration"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.serde]
version = "1.0"
[dependencies.tauri]
version = "2"
[build-dependencies.tauri-plugin]
version = "2"
features = ["build"]
[target.'cfg(target_os = "linux")'.dependencies.linicon]
version = "2.3.0"
[target.'cfg(target_os = "macos")'.dependencies.cocoa]
version = "0.26"
[target.'cfg(target_os = "macos")'.dependencies.objc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.rand]
version = "0.9"
[target.'cfg(target_os = "windows")'.dependencies.raw-window-handle]
version = "0.6"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_UI_HiDpi",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]