
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
36 lines
664 B
TOML
36 lines
664 B
TOML
[package]
|
|
name = "reqwest_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[lib]
|
|
path = "src/reqwest_client.rs"
|
|
doctest = true
|
|
|
|
[[example]]
|
|
name = "client"
|
|
path = "examples/client.rs"
|
|
|
|
[dependencies]
|
|
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
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
regex.workspace = true
|
|
reqwest.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui.workspace = true
|