mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-25 11:46:06 +02:00
e8069af804
* update to tauri v2
* covector setup
* update locks
* bump packages to v2 through covector, remove rc references
* msrv 1.78
* downgrade 1.79 msrv dep
* test clipboard
* fmt
* bitstream-io 2.3.0
* Revert "test clipboard"
This reverts commit c3e19dbe59.
22 lines
509 B
TOML
22 lines
509 B
TOML
[package]
|
|
name = "single-instance-example"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["You"]
|
|
repository = ""
|
|
edition = "2021"
|
|
rust-version = "1.78"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true, features = ["wry", "compression"] }
|
|
tauri-plugin-single-instance = { path = "../../../" }
|
|
tauri-plugin-cli = { path = "../../../../cli" }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[features]
|
|
prod = ["tauri/custom-protocol"]
|