Files
tauri-plugins-workspace/plugins/single-instance/Cargo.toml
T
renovate[bot] 204f61052f fix(deps): update rust crate windows-sys to 0.48 (#292)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-31 16:30:41 +02:00

34 lines
864 B
TOML

[package]
name = "tauri-plugin-single-instance"
version = "0.1.0"
description = "Ensure a single instance of your tauri app is running."
authors.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
exclude = ["/examples"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde.workspace = true
serde_json.workspace = true
tauri.workspace = true
log.workspace = true
thiserror.workspace = true
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.48"
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 = "3"