be424a6c3c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
760 B
TOML
34 lines
760 B
TOML
[package]
|
|
name = "xplane-cockpit"
|
|
version = "0.1.5"
|
|
description = "Desktop launcher for the X-Plane G1000 web cockpit"
|
|
authors = ["karim"]
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
|
|
[lib]
|
|
name = "xplane_cockpit_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
local-ip-address = "0.6"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = "s"
|
|
strip = true
|