tarweb 0.1.1

io-uring based static file web server, with SNI router
1
2
3
4
5
6
7
8
fn main() {
    let mut prost_build = prost_build::Config::new();
    prost_build
        .type_attribute(".", "#[derive(serde::Serialize,serde::Deserialize)]")
        .file_descriptor_set_path("descriptor.bin")
        .compile_protos(&["proto/sni_config.proto"], &["proto"])
        .unwrap();
}