
http-client pulled in rustls which in turn meant that gpui depended on rustls/aws-lc-sys. This commit extracts http-client-tls crate to separate the http-client and tls dependencies. Closes #ISSUE Release Notes: - N/A
20 lines
318 B
TOML
20 lines
318 B
TOML
[package]
|
|
name = "http_client_tls"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[lib]
|
|
path = "src/http_client_tls.rs"
|
|
doctest = true
|
|
|
|
[dependencies]
|
|
rustls.workspace = true
|
|
rustls-platform-verifier.workspace = true
|