mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
6a4cd53fd8
Similar to #20826 but keeps the Swift implementation. There were quite a few changes in the `call` crate, and so that code now has two variants. Closes #13714 Release Notes: - Added preliminary Linux support for voice chat and viewing screenshares. --------- Co-authored-by: Kirill Bulatov <mail4score@gmail.com> Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
27 lines
443 B
TOML
27 lines
443 B
TOML
[package]
|
|
name = "http_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
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
|