mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
27 lines
678 B
TOML
27 lines
678 B
TOML
[package]
|
|
name = "tauri-plugin-single-instance"
|
|
description = "Ensure a single instance of your tauri app is running."
|
|
version = "0.0.0"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
exclude = ["/examples"]
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.0.0-rc.16" }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
|
version = "0.36"
|
|
features = [
|
|
"Win32_System_Threading",
|
|
"Win32_System_DataExchange",
|
|
"Win32_Foundation",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_Security",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_Graphics_Gdi"
|
|
]
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
zbus = "2.2"
|