2 个不稳定版本
0.2.0 | 2023年2月5日 |
---|---|
0.1.0 | 2022年4月7日 |
#9 in #socket-address
154 每月下载量
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