| Crates.io | lxy |
| lib.rs | lxy |
| version | 0.1.0 |
| created_at | 2026-01-06 10:29:55.031077+00 |
| updated_at | 2026-01-06 10:29:55.031077+00 |
| description | A convenient async http and RPC framework in Rust |
| homepage | https://github.com/forehalo/lxy |
| repository | https://github.com/forehalo/lxy |
| max_upload_size | |
| id | 2025559 |
| size | 77,087 |
Lxy is a convenient async http and RPC framework in Rust, based on axum.
#[tokio::main]
async fn main() {
let app = lxy::App::builder()
.with_http(|router: &mut Router| {
router.get("/", "Hello, Lxy!")
})
.builder();
app.start().await;
}
MIT