rkt 0.6.0

Web framework with a focus on usability, security, extensibility, and speed. (Community Fork)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate rkt;

#[test]
#[should_panic]
fn bad_dynamic_mount() {
    let _ = rkt::build().mount("<name>", vec![]);
}

#[test]
fn good_static_mount() {
    let _ = rkt::build().mount("/abcdefghijkl_mno", vec![]);
}