mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
6f4385e737
This PR sorts the dependencies in various `Cargo.toml` files after #18414. Release Notes: - N/A
29 lines
494 B
TOML
29 lines
494 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]
|
|
anyhow.workspace = true
|
|
derive_more.workspace = true
|
|
futures.workspace = true
|
|
http = "1.1"
|
|
log.workspace = true
|
|
rustls-native-certs.workspace = true
|
|
rustls.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
url.workspace = true
|