mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 22:40:26 +01:00
119 lines
3.4 KiB
TOML
119 lines
3.4 KiB
TOML
[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-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]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
[features]
|
|
cargo-clippy = []
|
|
default = []
|
|
updater = []
|
|
license = ["yaak-license"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.0", 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", "cookies", "gzip", "brotli", "deflate", "json", "rustls-tls-manual-roots-no-provider", "socks", "http2"] }
|
|
reqwest_cookie_store = { workspace = true }
|
|
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.0"
|
|
tauri-plugin-deep-link = "2.4.3"
|
|
tauri-plugin-dialog = { workspace = true }
|
|
tauri-plugin-fs = "2.4.2"
|
|
tauri-plugin-log = { version = "2.7.0", features = ["colored"] }
|
|
tauri-plugin-opener = "2.5.0"
|
|
tauri-plugin-os = "2.3.1"
|
|
tauri-plugin-shell = { workspace = true }
|
|
tauri-plugin-single-instance = { version = "2.3.4", features = ["deep-link"] }
|
|
tauri-plugin-updater = "2.9.0"
|
|
tauri-plugin-window-state = "2.4.0"
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-stream = "0.1.17"
|
|
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-ws = { path = "yaak-ws" }
|
|
|
|
[workspace.dependencies]
|
|
chrono = "0.4.42"
|
|
hex = "0.4.3"
|
|
keyring = "3.6.3"
|
|
reqwest = "0.12.20"
|
|
reqwest_cookie_store = "0.8.0"
|
|
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.28"
|
|
tauri = "2.9.2"
|
|
tauri-plugin = "2.5.1"
|
|
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" }
|