Ilya Ashikhmin 5df797a4f8 feat(tauri): register dialog + fs plugins and grant capabilities
Wires the native Save/Open and SVG/PNG export paths used by the frontend IO
layer. Adds tauri-plugin-dialog and tauri-plugin-fs, initializes them in the
builder, and grants open/save/read/write permissions in the default capability.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-02 23:49:51 +02:00

28 lines
582 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.6.3" }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.11.3" }
tauri-plugin-log = "2"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"