prototype.rs

v0.1.0

$ cargo prototype --watch

Compiling prototype v0.1.0

Finished dev [unoptimized] in 0.3s

Watching for changes...

use prototype::{Builder, Config};

fn main() {

let app = Builder::new()

.config(Config::default())

.watch("src/**/*.rs")

.build();

app.run();

}

Benchmarks

prototype.rs
0.3s
framework-a
1.8s
framework-b
3.2s