25 lines
733 B
TOML
25 lines
733 B
TOML
[package]
|
|
name = "httpclient"
|
|
version = "0.0.2"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
futures-util = "0.3.25"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
serde_json = "1.0.89"
|
|
url = "2.5.0"
|
|
tokio = { version = "1.34.0", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
|
|
tracing = "0.1.40"
|
|
http = "1.0.0"
|
|
http-body = "1.0.0"
|
|
http-body-util = "0.1.0"
|
|
hyper = { version = "1.0.1", features = ["http1", "http2", "client", "server"] }
|
|
hyper-tls = { version = "0.6.0" }
|
|
hyper-util = { version = "0.1.1", features = ["full"] }
|
|
bytes = "1.5.0"
|
|
async-channel = "1.9.0"
|
|
err = { path = "../err" }
|
|
netpod = { path = "../netpod" }
|
|
parse = { path = "../parse" }
|