4 releases
0.1.3 | Apr 5, 2024 |
---|---|
0.1.2 | Apr 4, 2024 |
0.1.1 | Apr 4, 2024 |
0.1.0 | Apr 4, 2024 |
#1221 in Asynchronous
77 downloads per month
46KB
749 lines
Catalyzer
Catalyzer is a web framework for Rust, made to be simple and easy to use.
Example
use catalyzer::*;
#[main]
fn main() {
App![index]
.bind("0.0.0.0:3000")?
.launch()
}
#[get("/")]
fn index() {
"Hello, World!"
}
lib.rs
:
Catalyzer is a web framework for Rust, made to be simple and easy to use.
Example
use catalyzer::*;
#[main]
fn main() {
App![index]
.bind("0.0.0.0:3000")?
.launch()
}
#[get("/")]
fn index() {
"Hello, world!"
}
Dependencies
~5–15MB
~177K SLoC