Files
mission-control/src-tauri/Cargo.toml
teernisse 087b588d71 feat: add Tauri state persistence and BvCli trait
- Add Tauri storage adapter for Zustand (tauri-storage.ts)
- Add read_state, write_state, clear_state Tauri commands
- Wire focus-store and nav-store to use Tauri persistence
- Add BvCli trait for bv CLI mocking with response types
- Add BvError and McError conversion for bv errors
- Add cleanup_tmp_files tests for bridge
- Fix linter-introduced tauri_specta::command issues

Closes bd-2x6, bd-gil, bd-3px

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-26 10:06:57 -05:00

47 lines
1.1 KiB
TOML

[package]
name = "mission-control"
version = "0.1.0"
description = "ADHD-centric personal productivity hub"
authors = ["Taylor Eernisse"]
edition = "2021"
[lib]
name = "mission_control_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[[bin]]
name = "mission-control"
path = "src/main.rs"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["tray-icon"] }
tauri-plugin-shell = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "5"
notify = "7"
tauri-plugin-global-shortcut = "2"
libc = "0.2"
specta = { version = "=2.0.0-rc.22", features = ["derive"] }
tauri-specta = { version = "=2.0.0-rc.21", features = ["derive", "typescript"] }
specta-typescript = "0.0.9"
[dev-dependencies]
tempfile = "3"
mockall = "0.13"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "z"
strip = true