mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-18 16:57:19 +02:00
22 lines
522 B
TOML
22 lines
522 B
TOML
[package]
|
|
name = "app-updater-v2"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[dependencies]
|
|
tauri = { workspace = true }
|
|
tauri-runtime-wry = { workspace = true, optional = true }
|
|
tauri-runtime-cef = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri-plugin-updater = { path = "../../.." }
|
|
tiny_http = "0.12"
|
|
|
|
[features]
|
|
default = ["wry"]
|
|
wry = ["dep:tauri-runtime-wry"]
|
|
cef = ["dep:tauri-runtime-cef"]
|