[package]
edition = "2024"
rust-version = "1.92"
name = "truce-gui-utils"
version = "3.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-backend host-side helpers for truce GUI backends (macOS NSView anchoring, etc)."
homepage = "https://github.com/truce-audio/truce"
readme = "README.md"
license = "LicenseRef-TruceLicense-1.0"
repository = "https://github.com/truce-audio/truce"
[lib]
name = "truce_gui_utils"
path = "src/lib.rs"
[dependencies.raw-window-handle]
version = "0.5"
[target.'cfg(target_os = "macos")'.dependencies.objc]
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_Graphics_OpenGL",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']