- Add tauri-plugin-store for portable data storage - Implement portable data directory (TypoGenie-Data/ next to EXE) - Configure Rust backend to use EXE-relative paths - Add store permissions for persistent settings - Update README with portable badges and documentation - Document how to build and use the portable EXE - Zero registry, zero AppData, fully self-contained
27 lines
623 B
TOML
27 lines
623 B
TOML
[package]
|
|
name = "typogenie"
|
|
version = "1.0.0"
|
|
description = "TypoGenie - Portable Markdown to Word document converter"
|
|
authors = ["TypoGenie Contributors"]
|
|
license = "MIT"
|
|
repository = "https://git.lashman.live/lashman/typogenie"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.3" }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.9.5" }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-store = "2"
|