- Replace the Python/Docker setup with a Rust workspace and Tauri frontend - Add core crates for archive, audio, MIDI, plugin, and desktop UI layers - Refresh the app scaffolding, build config, and documentation
23 lines
617 B
TOML
23 lines
617 B
TOML
[package]
|
|
name = "fbrowser-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.2.0", features = [] }
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
fbrowser-archive = { path = "../crates/fbrowser-archive" }
|
|
fbrowser-audio = { path = "../crates/fbrowser-audio" }
|
|
fbrowser-core = { path = "../crates/fbrowser-core" }
|
|
fbrowser-midi = { path = "../crates/fbrowser-midi" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlx.workspace = true
|
|
tauri.workspace = true
|
|
tauri-plugin-dialog = "2.3.1"
|
|
tokio.workspace = true
|