yourcloud/libs/http_client/Cargo.toml

16 lines
381 B
TOML
Raw Permalink Normal View History

2024-08-05 16:48:12 -05:00
[package]
name = "http_client"
2024-08-05 19:52:50 -05:00
version = "1.0.0"
2024-08-05 16:48:12 -05:00
edition = "2021"
[dependencies]
reqwest = { version = "0.11.26", features = ["json", "socks"] }
reqwest-middleware = "0.2.5"
reqwest-retry = "0.4.0"
reqwest-tracing = "0.4.8"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
2024-08-05 19:52:50 -05:00
thiserror = { workspace = true }
tracing = { workspace = true }
2024-08-05 16:48:12 -05:00
url = "2.5.2"