mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
de732d0ab0
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "tauri-plugin-single-instance"
|
|
version = "2.0.0-rc.1"
|
|
description = "Ensure a single instance of your tauri app is running."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
repository = { workspace = true }
|
|
exclude = ["/examples"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
semver = { version = "1", optional = true }
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
|
|
version = "0.59"
|
|
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 = "4"
|
|
|
|
[features]
|
|
semver = ["dep:semver"]
|