mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-22 04:28:39 +02:00
- New crates/yaak-api crate with no Tauri dependency - Uses sysproxy to auto-detect OS proxy settings (macOS, Windows, Linux) - Moved yaak_api_client from yaak-tauri-utils, now takes version string - Removed api_client and error modules from yaak-tauri-utils - Updated all callers in license, plugins, notifications, and URI scheme
13 lines
259 B
TOML
13 lines
259 B
TOML
[package]
|
|
name = "yaak-api"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
reqwest = { workspace = true, features = ["gzip"] }
|
|
sysproxy = "0.3"
|
|
thiserror = { workspace = true }
|
|
yaak-common = { workspace = true }
|