Files
yaak-mountain-loop/src-tauri/yaak-http/Cargo.toml
2025-12-10 13:54:22 -08:00

21 lines
694 B
TOML

[package]
name = "yaak-http"
version = "0.1.0"
edition = "2024"
publish = false
[dependencies]
hyper-util = { version = "0.1.17", default-features = false, features = ["client-legacy"] }
log = { workspace = true }
regex = "1.11.1"
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"] }
tauri = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tower-service = "0.3.3"
urlencoding = "2.1.3"
yaak-models = { workspace = true }
yaak-tls = { workspace = true }