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

#713 in Asynchronous

Download history 248/week @ 2024-04-02 7/week @ 2024-04-09

255 downloads per month

Custom license

46KB
749 lines

catalyzer-logo

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

~6–17MB
~192K SLoC