Blaze
Blaze is a lightweight, asynchronous web framework for Rust, designed for simplicity and performance.
Features
- Asynchronous request handling
- Routing with support for path parameters
- JSON serialization and deserialization
- Easy-to-use macros for defining routes
Quick Start
-
Add Blaze to your
Cargo.toml -
Create a simple web server:
use ;
use ;
async
- Run your server and visit
http://localhost:8080/hello/worldin your browser.