We've had several outages with a proximate cause of "vercel is complicated", and auto-update is considered a critical feature; so lets not use vercel for that. Release Notes: - Auto Updates (and remote server binaries) are now downloaded via https://cloud.zed.dev instead of https://zed.dev. As before, these URLs redirect to the GitHub release for actual downloads.
39 lines
779 B
TOML
39 lines
779 B
TOML
[package]
|
|
name = "http_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
description = "A HTTP client library for Zed and GPUI"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[lib]
|
|
path = "src/http_client.rs"
|
|
doctest = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-compression.workspace = true
|
|
async-fs.workspace = true
|
|
async-tar.workspace = true
|
|
bytes.workspace = true
|
|
derive_more.workspace = true
|
|
futures.workspace = true
|
|
http-body.workspace = true
|
|
http.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_urlencoded.workspace = true
|
|
sha2.workspace = true
|
|
tempfile.workspace = true
|
|
url.workspace = true
|
|
util.workspace = true
|