mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 02:37:21 +00:00
6f4385e737
This PR sorts the dependencies in various `Cargo.toml` files after #18414. Release Notes: - N/A
31 lines
496 B
TOML
31 lines
496 B
TOML
[package]
|
|
name = "ureq_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[lib]
|
|
path = "src/ureq_client.rs"
|
|
doctest = true
|
|
|
|
[[example]]
|
|
name = "client"
|
|
path = "examples/client.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
http_client.workspace = true
|
|
parking_lot.workspace = true
|
|
serde.workspace = true
|
|
smol.workspace = true
|
|
ureq = "=2.9.1"
|
|
util.workspace = true
|