mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 22:40:26 +01:00
67 lines
2.0 KiB
TOML
67 lines
2.0 KiB
TOML
[workspace]
|
|
members = ["yaak_grpc", "yaak_templates", "yaak_plugin_runtime", "yaak_models"]
|
|
|
|
|
|
[package]
|
|
name = "yaak-app"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
# Produce a library for mobile support
|
|
[lib]
|
|
name = "tauri_app_lib"
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0-rc.0", features = [] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc = "0.2.7"
|
|
cocoa = "0.25.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
openssl-sys = { version = "0.9", features = ["vendored"] } # For Ubuntu installation to work
|
|
|
|
[dependencies]
|
|
yaak_grpc = { path = "yaak_grpc" }
|
|
yaak_templates = { path = "yaak_templates" }
|
|
yaak_plugin_runtime = { workspace = true }
|
|
yaak_models = { workspace = true }
|
|
anyhow = "1.0.86"
|
|
base64 = "0.22.0"
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
datetime = "0.5.2"
|
|
hex_color = "3.0.0"
|
|
http = "1"
|
|
log = "0.4.21"
|
|
rand = "0.8.5"
|
|
regex = "1.10.2"
|
|
reqwest = { version = "0.12.4", features = ["multipart", "cookies", "gzip", "brotli", "deflate", "json", "native-tls-alpn"] }
|
|
reqwest_cookie_store = "0.8.0"
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
serde_json = { version = "1.0.116", features = ["raw_value"] }
|
|
serde_yaml = "0.9.34"
|
|
tauri = { workspace = true }
|
|
tauri-plugin-shell = { workspace = true }
|
|
tauri-plugin-clipboard-manager = "2.1.0-beta.7"
|
|
tauri-plugin-dialog = "2.0.0-rc.0"
|
|
tauri-plugin-fs = "2.0.0-rc.0"
|
|
tauri-plugin-log = { version = "2.0.0-rc.0", features = ["colored"] }
|
|
tauri-plugin-os = "2.0.0-rc.0"
|
|
tauri-plugin-updater = "2.0.0-rc.0"
|
|
tauri-plugin-window-state = "2.0.0-rc.0"
|
|
tokio = { version = "1.36.0", features = ["sync"] }
|
|
tokio-stream = "0.1.15"
|
|
uuid = "1.7.0"
|
|
thiserror = "1.0.61"
|
|
mime_guess = "2.0.5"
|
|
|
|
[workspace.dependencies]
|
|
yaak_models = { path = "yaak_models" }
|
|
yaak_plugin_runtime = { path = "yaak_plugin_runtime" }
|
|
tauri = { version = "2.0.0-rc.2", features = ["devtools", "protocol-asset"] }
|
|
tauri-plugin-shell = "2.0.0-rc.0"
|