Cargo.toml

 1[package]
 2name = "http_client"
 3version = "0.1.0"
 4edition.workspace = true
 5publish = false
 6license = "Apache-2.0"
 7description = "A HTTP client library for Zed and GPUI"
 8
 9[lints]
10workspace = true
11
12[features]
13test-support = []
14
15[lib]
16path = "src/http_client.rs"
17doctest = true
18
19[dependencies]
20anyhow.workspace = true
21async-compression.workspace = true
22bytes.workspace = true
23derive_more.workspace = true
24futures.workspace = true
25http-body.workspace = true
26http.workspace = true
27log.workspace = true
28parking_lot.workspace = true
29serde.workspace = true
30serde_json.workspace = true
31serde_urlencoded.workspace = true
32url.workspace = true
33
34[target.'cfg(not(target_family = "wasm"))'.dependencies]
35util.workspace = true
36async-fs.workspace = true
37async-tar.workspace = true
38sha2.workspace = true
39tempfile.workspace = true