mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 20:25:44 +03:00
c85a3cc117
This PR also includes a downgrade of our async_tungstenite version to 0.24 Release Notes: - N/A
35 lines
582 B
TOML
35 lines
582 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
|
|
log.workspace = true
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
reqwest.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui.workspace = true
|