mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
99 lines
2.8 KiB
TOML
99 lines
2.8 KiB
TOML
[workspace]
|
|
members = [
|
|
"yaak-grpc",
|
|
"yaak-http",
|
|
"yaak-license",
|
|
"yaak-models",
|
|
"yaak-plugins",
|
|
"yaak-sse",
|
|
"yaak-sync",
|
|
"yaak-templates",
|
|
"yaak-ws",
|
|
]
|
|
|
|
[package]
|
|
name = "yaak-app"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["Gregory Schier"]
|
|
publish = false
|
|
|
|
# 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.
|
|
|
|
[features]
|
|
cargo-clippy = []
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.5", features = [] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc = "0.2.7"
|
|
cocoa = "0.26.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
openssl-sys = { version = "0.9", features = ["vendored"] } # For Ubuntu installation to work
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
datetime = "0.5.2"
|
|
encoding_rs = "0.8.35"
|
|
eventsource-client = { git = "https://github.com/yaakapp/rust-eventsource-client", version = "0.14.0" }
|
|
hex_color = "3.0.0"
|
|
http = { version = "1.2.0", default-features = false }
|
|
log = "0.4.21"
|
|
md5 = "0.7.0"
|
|
mime_guess = "2.0.5"
|
|
rand = "0.9.0"
|
|
regex = "1.10.2"
|
|
reqwest = { workspace = true, features = ["multipart", "cookies", "gzip", "brotli", "deflate", "json", "rustls-tls-manual-roots-no-provider"] }
|
|
reqwest_cookie_store = "0.8.0"
|
|
rustls = { version = "0.23.22", default-features = false, features = ["custom-provider", "ring"] }
|
|
rustls-platform-verifier = "0.5.0"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["raw_value"] }
|
|
tauri = { workspace = true, features = ["devtools", "protocol-asset"] }
|
|
tauri-plugin-clipboard-manager = "2.2.1"
|
|
tauri-plugin-dialog = "2.2.0"
|
|
tauri-plugin-fs = "2.2.0"
|
|
tauri-plugin-log = { version = "2.2.1", features = ["colored"] }
|
|
tauri-plugin-opener = "2.2.5"
|
|
tauri-plugin-os = "2.2.0"
|
|
tauri-plugin-shell = { workspace = true }
|
|
tauri-plugin-single-instance = "2.2.1"
|
|
tauri-plugin-updater = "2.4.0"
|
|
tauri-plugin-window-state = "2.2.1"
|
|
tokio = { version = "1.43.0", features = ["sync"] }
|
|
tokio-stream = "0.1.17"
|
|
ts-rs = { workspace = true }
|
|
uuid = "1.12.1"
|
|
yaak-grpc = { path = "yaak-grpc" }
|
|
yaak-http = { workspace = true }
|
|
yaak-license = { path = "yaak-license" }
|
|
yaak-models = { workspace = true }
|
|
yaak-plugins = { workspace = true }
|
|
yaak-sse = { workspace = true }
|
|
yaak-sync = { path = "yaak-sync" }
|
|
yaak-templates = { workspace = true }
|
|
yaak-ws = { path = "yaak-ws" }
|
|
|
|
[workspace.dependencies]
|
|
reqwest = "0.12.12"
|
|
serde = "1.0.215"
|
|
serde_json = "1.0.132"
|
|
tauri = "2.2.5"
|
|
tauri-plugin = "2.0.4"
|
|
tauri-plugin-shell = "2.2.0"
|
|
thiserror = "2.0.3"
|
|
ts-rs = "10.0.0"
|
|
yaak-models = { path = "yaak-models" }
|
|
yaak-plugins = { path = "yaak-plugins" }
|
|
yaak-http = { path = "yaak-http" }
|
|
yaak-sse = { path = "yaak-sse" }
|
|
yaak-templates = { path = "yaak-templates" }
|