mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-15 06:40:17 +00:00
6f4385e737
This PR sorts the dependencies in various `Cargo.toml` files after #18414. Release Notes: - N/A
31 lines
532 B
TOML
31 lines
532 B
TOML
[package]
|
|
name = "reqwest_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
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 = "1.0"
|
|
futures.workspace = true
|
|
http_client.workspace = true
|
|
serde.workspace = true
|
|
smol.workspace = true
|
|
tokio.workspace = true
|
|
|
|
reqwest = { workspace = true, features = ["rustls-tls-manual-roots", "stream"] }
|