weber 0.1.1

Simple web server with VERY limited functionality
Documentation
1
2
3
4
5
6
7
8
9
use weber::parser::request::PathParser;

#[test]
#[should_panic]
fn pathparser_panic_test() {
    let path = "foo/bar:val=5:val=6";

    let _parsed = PathParser::parse(&path).unwrap();
}