mirror of
https://github.com/tauri-apps/tauri-plugin-single-instance.git
synced 2026-02-08 12:51:19 +01:00
22 lines
495 B
TOML
22 lines
495 B
TOML
[package]
|
|
name = "app"
|
|
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 = "1", features = ["api-all"] }
|
|
tauri-plugin-single-instance = { path = "../../../" }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|