mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
eccd6f977a
Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de> Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
21 lines
441 B
TOML
21 lines
441 B
TOML
[package]
|
|
name = "single-instance-example"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "You" ]
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
[dependencies]
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
tauri = { workspace = true }
|
|
tauri-plugin-single-instance = { path = "../../../" }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[features]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|