18 lines
443 B
TOML
18 lines
443 B
TOML
[package]
|
|
name = "http-util"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "http"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = [ "derive" ] }
|
|
futures = "0.3"
|
|
json = "0.12"
|
|
reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "system-proxy", "rustls-tls", "blocking", "stream"] }
|
|
tokio = { version = "1", features = [ "full" ] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|