Files
window-shadows/Cargo.toml
renovate[bot] 0b36ec7b2d chore(deps): update rust crate tao to 0.25 (#64)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-04 00:28:47 +02:00

35 lines
1.0 KiB
TOML

[package]
name = "window-shadows"
description = "Add native shadows to your windows."
authors = [ "Tauri Programme within The Commons Conservancy" ]
version = "0.2.2"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri-plugin-shadows"
documentation = "https://docs.rs/tauri-plugin-shadows"
keywords = [ "shadows", "windowing", "gui" ]
categories = [ "gui" ]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [ "x86_64-apple-darwin", "x86_64-pc-windows-msvc" ]
[dependencies]
raw-window-handle = "0.5"
[dev-dependencies]
tao = { version = "0.25", features = ["rwh_05"] }
winit = {version = "0.29", default-features = false, features = ["x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita", "rwh_05"] }
[target."cfg(target_os = \"windows\")".dependencies]
windows-sys = { version = "0.52.0", features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
"Win32_UI_Controls"
] }
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.25"
objc = "0.2"