25 releases
| 0.0.9 | Dec 9, 2025 |
|---|---|
| 0.0.8 | Nov 13, 2025 |
| 0.0.6 | Oct 25, 2025 |
| 0.0.5 | Sep 30, 2025 |
| 0.0.2 | Feb 15, 2025 |
#153 in HTTP client
181 downloads per month
Used in 7 crates
225KB
4K
SLoC
deboa
Description
deboa ("I'm ok" in portuguese) is a straightforward, non opinionated, developer-centric HTTP client library for Rust. It offers a rich array of modern features—from flexible authentication and serialization formats to runtime compatibility and middleware support—while maintaining simplicity and ease of use. It’s especially well-suited for Rust projects that require a lightweight, efficient HTTP client without sacrificing control or extensibility.
Attention
This release has a major api change. Please check the migration guide for more information.
Features
- easily add, remove and update headers
- helpers to add basic and bearer auth
- set retries and timeout
- pluggable catchers (interceptors)
- pluggable compression (gzip, deflate, br)
- pluggable serialization (json, xml, msgpack)
- cookies support
- urlencoded and multipart forms
- comprehensive error handling
- response streaming
- upgrade support (websocket, etc.)
- runtime compatibility (tokio and smol)
- http1/2 support
- http3 support (soon)
Install
deboa = { version = "0.0.7", features = ["http1", "tokio-rt"] }
http = "1.3.1"
Crate features
- tokio-rt (default)
- smol-rt
- http1 (default)
- http2
- http3 (soon)
Usage
use deboa::{
Deboa, Result, request::{DeboaRequest, FetchWith, get}
};
use deboa_extras::http::{self, serde::json::JsonBody};
use ::http::Method;
#[derive(Debug, serde::Deserialize)]
pub struct Post {
pub id: u64,
pub title: String,
pub body: String,
}
#[tokio::main]
async fn main() -> Result<()> {
let mut client = Deboa::new();
/*
// You can also use the Fetch trait to issue requests
let posts: Vec<Post> = "https://jsonplaceholder.typicode.com/posts"
.fetch_with(client)
.await?
.body_as(JsonBody)
.await?;
// or use at, from (defaults to GET) and to (defaults to POST) methods:
let posts: Vec<Post> = DeboaRequest::at("https://jsonplaceholder.typicode.com/posts", Method::GET)?
.send_with(client)
.await?
.body_as(JsonBody)
.await?;
// shifleft? Yes sir! Defaults to GET, but you can change it, same for headers.
let request = &client << "https://jsonplaceholder.typicode.com/posts";
let posts: Vec<Post> = client.execute(request)
.await?
.body_as(JsonBody)
.await?;
// or simply:
let posts: Vec<Post> = client
.execute("https://jsonplaceholder.typicode.com/posts")
.await?
.body_as(JsonBody)
.await?;
// you can also post a json body
let body = serde_json::json!({
"id": 100,
"title": "Some title",
"body": "Some body"
});
let request = post("https://jsonplaceholder.typicode.com/posts")?
.header(header::CONTENT_TYPE, "application/json")
.body_as(JsonBody, body)?;
let response = request.send_with(&mut client).await?;
assert_eq!(response.status(), 201);
*/
let posts: Vec<Post> = get("https://jsonplaceholder.typicode.com/posts")?
.send_with(client)
.await?
.body_as(JsonBody)
.await?;
println!("posts: {:#?}", posts);
Ok(())
}
License
MIT
Author
Rogerio Pereira Araujo rogerio.araujo@gmail.com
Dependencies
~19–39MB
~503K SLoC