mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 21:51:59 +02:00
When "Validate TLS certificates" is disabled, use the OS native TLS stack (Secure Transport/SChannel/OpenSSL) instead of rustls. This adds support for TLS 1.0+ connections to legacy servers like IBM WebSphere, which rustls cannot handle since it only implements TLS 1.2+. Ref: https://yaak.app/feedback/posts/tls-handshake-eof-when-connecting-to-private-ibm-websphere-endpoint-works-when-s Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "yaak-http"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
async-compression = { version = "0.4", features = ["tokio", "gzip", "deflate", "brotli", "zstd"] }
|
|
async-trait = "0.1"
|
|
brotli = "7"
|
|
bytes = "1.11.1"
|
|
cookie = "0.18.1"
|
|
flate2 = "1"
|
|
futures-util = "0.3"
|
|
http-body = "1"
|
|
url = "2"
|
|
zstd = "0.13"
|
|
hyper-util = { version = "0.1.17", default-features = false, features = ["client-legacy"] }
|
|
log = { workspace = true }
|
|
mime_guess = "2.0.5"
|
|
native-tls = "0.2"
|
|
regex = "1.11.1"
|
|
reqwest = { workspace = true, features = ["rustls-tls-manual-roots-no-provider", "native-tls", "socks", "http2", "stream"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt", "fs", "io-util"] }
|
|
tokio-util = { version = "0.7", features = ["codec", "io", "io-util"] }
|
|
tower-service = "0.3.3"
|
|
urlencoding = "2.1.3"
|
|
yaak-common = { workspace = true }
|
|
yaak-models = { workspace = true }
|
|
yaak-templates = { workspace = true }
|
|
yaak-tls = { workspace = true }
|