mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
24 lines
552 B
TOML
24 lines
552 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "single-instance-example"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "You" ]
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
tauri = { version = "2.0.0-alpha.8", features = ["api-all"] }
|
|
tauri-plugin-single-instance = { path = "../../../" }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-alpha.4", features = [] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|