mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-27 11:56:05 +02:00
382fc3a7bf
* basic example foundation * add examples to workspace * cleanup and load fix * fmt * reset lockfile --------- Co-authored-by: FabianLars <fabianlars@fabianlars.de>
25 lines
628 B
TOML
25 lines
628 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 = ["shell-open"] }
|
|
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!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|