mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
f209b2f23c
* chore(deps): update tauri monorepo to v2.6.0 * Regenerate api-iife.js * Bump rust tauri * Tweak all examples to match the new features * Bump workspace min tauri version * Bump `@tauri-apps/api` to ^2.6 * Add change file * Update lock file * missing `"` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
25 lines
657 B
TOML
25 lines
657 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 = ["wry", "common-controls-v6", "x11"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri-plugin-store = { path = "../../../" }
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
prod = ["tauri/custom-protocol"]
|