[workspace] [package] name = "maarcadetweet-app" version = "0.1.0" description = "maarcadetweet Tauri desktop client" authors = ["EifelCloud"] edition = "2021" rust-version = "1.80" [lib] name = "maarcadetweet_app_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2", features = [] } [dependencies] tauri = { version = "2", features = ["tray-icon", "image-png"] } tauri-plugin-keyring-store = "0.2" tauri-plugin-notification = "2" tauri-plugin-dialog = "2" tauri-plugin-updater = "2" tauri-plugin-window-state = "2" tauri-plugin-shell = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["full"] } reqwest = { version = "0.12", features = ["json"] } anyhow = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } at-crypto = { path = "../../at-crypto" } at-shared = { path = "../../at-shared" } chrono = { version = "0.4", features = ["serde"] } parking_lot = "0.12" [profile.release] panic = "abort" codegen-units = 1 lto = true opt-level = "s" strip = true