mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-14 20:55:26 +02:00
31 lines
859 B
TOML
31 lines
859 B
TOML
[package]
|
|
name = "app_settings_manager"
|
|
version = "0.0.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[dependencies]
|
|
tauri = { workspace = true, features = ["common-controls-v6"] }
|
|
# The webview runtime is picked by depending on its crate and handing its
|
|
# attributes to `tauri::Builder::runtime`.
|
|
tauri-runtime-wry = { workspace = true, optional = true, features = [
|
|
"common-controls-v6",
|
|
] }
|
|
tauri-runtime-cef = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri-plugin-store = { path = "../../../" }
|
|
|
|
[features]
|
|
default = ["wry"]
|
|
wry = ["dep:tauri-runtime-wry"]
|
|
cef = ["dep:tauri-runtime-cef"]
|