#web #framework #http

yanked axum-eyre

Flexible concrete Error and Result type for axum

0.5.1 Apr 6, 2022
0.5.0 Apr 6, 2022

#1505 in #http

MIT license

4KB

axum-eyre

cargo add axum-eyre

Crate which provides an Error and Result type which can be used in a eyre-like fashion.

use axum::{response::Html, routing::get, Router};
use std::{fs::read_to_string, net::SocketAddr};
use axum_eyre::Result;

#[tokio::main]
async fn main() {
    let app = Router::new().route("/", get(index));
    axum::Server::bind(&SocketAddr::from(([127, 0, 0, 1], 3000)))
        .serve(app.into_make_service())
        .await
        .unwrap();
}

async fn index() -> Result<Html<String>> {
    let template = read_to_string("index.html")?;
    Ok(Html(template))
}

lib.rs:

Crate which provides an Error and Result type which can be used in a eyre-like fashion.

use axum::{response::Html, routing::get, Router};
use std::{fs::read_to_string, net::SocketAddr};
use axum_eyre::Result;

#[tokio::main]
async fn main() {
    let app = Router::new().route("/", get(index));
    axum::Server::bind(&SocketAddr::from(([127, 0, 0, 1], 3000)))
        .serve(app.into_make_service())
        .await
        .unwrap();
}

async fn index() -> Result<Html<String>> {
    let template = read_to_string("index.html")?;
    Ok(Html(template))
}

Dependencies

~7–19MB
~221K SLoC