2 个不稳定版本

0.2.0 2023年2月5日
0.1.0 2022年4月7日

#9 in #socket-address

Download history 15/week @ 2024-04-22 12/week @ 2024-04-29 24/week @ 2024-05-06 10/week @ 2024-05-13 26/week @ 2024-05-20 14/week @ 2024-05-27 16/week @ 2024-06-03 15/week @ 2024-06-10 13/week @ 2024-06-17 21/week @ 2024-06-24 4/week @ 2024-07-08 37/week @ 2024-07-15 14/week @ 2024-07-22 16/week @ 2024-07-29 87/week @ 2024-08-05

154 每月下载量

MIT 许可证

4KB

axum-error

cargo add axum-error

提供了一种用于 axum 的错误类型,可以像使用 eyre 一样使用,以及使用 fehler 进行简单的错误处理。

use axum::{response::Html, routing::get, Router};
use std::{fs::read_to_string, net::SocketAddr};
use axum_error::*;
 
#[throws]
#[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?;
}
 
#[throws]
async fn index() -> Html<String> {
    Html(read_to_string("index.html")?)
}

lib.rs:

提供了一种用于 axum 的错误类型,可以像使用 eyre 一样使用

use axum::{response::Html, routing::get, Router};
use std::{fs::read_to_string, net::SocketAddr};
use axum_error::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>> {
    Ok(Html(read_to_string("index.html")?))
}

依赖

~6–8MB
~145K SLoC