[workspace] members = [ "yaak-crypto", "yaak-fonts", "yaak-git", "yaak-grpc", "yaak-http", "yaak-license", "yaak-mac-window", "yaak-models", "yaak-plugins", "yaak-sse", "yaak-sync", "yaak-templates", "yaak-tls", "yaak-ws", ] [package] name = "yaak-app" version = "0.0.0" edition = "2024" authors = ["Gregory Schier"] publish = false # Produce a library for mobile support [lib] name = "tauri_app_lib" crate-type = ["staticlib", "cdylib", "lib"] [profile.release] # Currently disabled due to: # Warn Failed to add bundler type to the binary: __TAURI_BUNDLE_TYPE variable not found in binary. Make sure tauri crate and tauri-cli are up to date and that symbol stripping is disabled (https://doc.rust-lang.org/cargo/reference/profiles.html#strip). Updater plugin may not be able to update this package. This shouldn't normally happen, please report it to https://github.com/tauri-apps/tauri/issues strip = false [features] cargo-clippy = [] default = [] updater = [] license = ["yaak-license"] [build-dependencies] tauri-build = { version = "2.5.3", features = [] } [target.'cfg(target_os = "linux")'.dependencies] openssl-sys = { version = "0.9.105", features = ["vendored"] } # For Ubuntu installation to work [dependencies] charset = "0.1.5" chrono = { workspace = true, features = ["serde"] } cookie = "0.18.1" eventsource-client = { git = "https://github.com/yaakapp/rust-eventsource-client", version = "0.14.0" } http = { version = "1.2.0", default-features = false } log = { workspace = true } md5 = "0.8.0" mime_guess = "2.0.5" rand = "0.9.0" reqwest = { workspace = true, features = ["multipart", "gzip", "brotli", "deflate", "json", "rustls-tls-manual-roots-no-provider", "socks", "http2"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true, features = ["raw_value"] } tauri = { workspace = true, features = ["devtools", "protocol-asset"] } tauri-plugin-clipboard-manager = "2.3.2" tauri-plugin-deep-link = "2.4.5" tauri-plugin-dialog = { workspace = true } tauri-plugin-fs = "2.4.4" tauri-plugin-log = { version = "2.7.1", features = ["colored"] } tauri-plugin-opener = "2.5.2" tauri-plugin-os = "2.3.2" tauri-plugin-shell = { workspace = true } tauri-plugin-single-instance = { version = "2.3.6", features = ["deep-link"] } tauri-plugin-updater = "2.9.0" tauri-plugin-window-state = "2.4.1" thiserror = { workspace = true } tokio = { workspace = true, features = ["sync"] } tokio-stream = "0.1.17" tokio-util = { version = "0.7", features = ["codec"] } ts-rs = { workspace = true } uuid = "1.12.1" yaak-common = { workspace = true } yaak-crypto = { workspace = true } yaak-fonts = { workspace = true } yaak-git = { path = "yaak-git" } yaak-grpc = { path = "yaak-grpc" } yaak-http = { workspace = true } yaak-license = { path = "yaak-license", optional = true } yaak-mac-window = { path = "yaak-mac-window" } yaak-models = { workspace = true } yaak-plugins = { workspace = true } yaak-sse = { workspace = true } yaak-sync = { workspace = true } yaak-templates = { workspace = true } yaak-tls = { workspace = true } yaak-ws = { path = "yaak-ws" } [workspace.dependencies] chrono = "0.4.42" hex = "0.4.3" keyring = "3.6.3" reqwest = "0.12.20" rustls = { version = "0.23.34", default-features = false } rustls-platform-verifier = "0.6.2" serde = "1.0.228" serde_json = "1.0.145" sha2 = "0.10.9" log = "0.4.29" tauri = "2.9.5" tauri-plugin = "2.5.2" tauri-plugin-dialog = "2.4.2" tauri-plugin-shell = "2.3.3" thiserror = "2.0.17" tokio = "1.48.0" ts-rs = "11.1.0" yaak-common = { path = "yaak-common" } yaak-crypto = { path = "yaak-crypto" } yaak-fonts = { path = "yaak-fonts" } yaak-http = { path = "yaak-http" } yaak-models = { path = "yaak-models" } yaak-plugins = { path = "yaak-plugins" } yaak-sse = { path = "yaak-sse" } yaak-sync = { path = "yaak-sync" } yaak-templates = { path = "yaak-templates" } yaak-tls = { path = "yaak-tls" }