[package] name = "flightplanner-gui" version = "0.1.0" description = "Flight Planner desktop GUI (Tauri)" authors = ["you"] edition = "2021" [lib] # The `_lib` suffix keeps the lib name distinct from the bin on Windows. # See https://github.com/rust-lang/cargo/issues/8519 name = "gui_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2", features = [] } [dependencies] tauri = { version = "2", features = [] } tauri-plugin-opener = "2" serde = { workspace = true } serde_json = { workspace = true } flightplanner-core = { workspace = true } flightplanner-rad = { path = "../../crates/rad" }