chore: Extract http-client-tls crate (#26895)
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
This commit is contained in:
parent
d5bb12631a
commit
8f560daec2
11 changed files with 59 additions and 26 deletions
|
@ -24,6 +24,7 @@ anyhow.workspace = true
|
|||
bytes.workspace = true
|
||||
futures.workspace = true
|
||||
http_client.workspace = true
|
||||
http_client_tls.workspace = true
|
||||
serde.workspace = true
|
||||
smol.workspace = true
|
||||
log.workspace = true
|
||||
|
|
|
@ -56,7 +56,7 @@ impl ReqwestClient {
|
|||
}
|
||||
|
||||
let client = client
|
||||
.use_preconfigured_tls(http_client::tls_config())
|
||||
.use_preconfigured_tls(http_client_tls::tls_config())
|
||||
.build()?;
|
||||
let mut client: ReqwestClient = client.into();
|
||||
client.proxy = proxy;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue