ZIm/crates/http_client/Cargo.toml
Piotr Osiewicz 8f560daec2
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
2025-03-17 02:36:37 +00:00

27 lines
460 B
TOML

[package]
name = "http_client"
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.rs"
doctest = true
[dependencies]
bytes.workspace = true
anyhow.workspace = true
derive_more.workspace = true
futures.workspace = true
http.workspace = true
log.workspace = true
serde.workspace = true
serde_json.workspace = true
url.workspace = true