[package] name = "httpclient" version = "0.1.0" edition = "2021" [workspace] # This is a standalone dogfooding project, not part of the main workspace [dependencies] reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } tokio = { version = "1.0", features = ["full"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tracing = "0.1" [dev-dependencies] tokio-test = "0.4" [lib] name = "httpclient" path = "src/lib.rs"