mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 21:26:14 +03:00
27 lines
408 B
TOML
27 lines
408 B
TOML
|
[package]
|
||
|
name = "http"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
license = "Apache-2.0"
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[features]
|
||
|
test-support = []
|
||
|
|
||
|
[lib]
|
||
|
path = "src/http.rs"
|
||
|
doctest = true
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow.workspace = true
|
||
|
futures.workspace = true
|
||
|
isahc.workspace = true
|
||
|
log.workspace = true
|
||
|
serde.workspace = true
|
||
|
serde_json.workspace = true
|
||
|
futures-lite.workspace = true
|
||
|
url.workspace = true
|