mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-20 08:34:18 +01:00
22 lines
787 B
TOML
22 lines
787 B
TOML
[package]
|
|
name = "yaak-http"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
yaak-models = { workspace = true }
|
|
regex = "1.11.1"
|
|
rustls = { workspace = true, default-features = false, features = ["ring"] }
|
|
rustls-platform-verifier = { workspace = true }
|
|
urlencoding = "2.1.3"
|
|
tauri = { workspace = true }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true, features = ["multipart", "cookies", "gzip", "brotli", "deflate", "json", "rustls-tls-manual-roots-no-provider", "socks", "http2"] }
|
|
reqwest_cookie_store = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
hyper-util = { version = "0.1.17", default-features = false, features = ["client-legacy"] }
|
|
tower-service = "0.3.3"
|
|
log = { workspace = true }
|