[package] name = "tauri-plugin-spotlight" version = "0.2.0" edition = "2021" rust-version = "1.57" license = "MIT OR Apache-2.0" keywords = ["tauri", "spotlight"] description = "A Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows." repository = "https://github.com/zzzze/tauri-plugin-spotlight" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tauri = { version = "1.2", features = ["global-shortcut-all"] } serde = { version = "1", features = ["derive"] } serde_json = "1" bitflags = "2.4.2" objc-foundation = "0.1.1" objc_id = "0.1.1" thiserror = "1.0.56" [target."cfg(target_os = \"macos\")".dependencies] cocoa = { version = "0.24.1" } objc = { version = "0.2.7" }