One of my big gripes with a lot of these existing web server implementations for rust is that they are all big! You need to look through documentation for 15 minutes and 100 lines of boilerplate to even know what your doing! Thats why I began work on Zvezda.
https://gitlab.com/inzig0/zvezda.git
cd
into the project foldercargo run --example hello
cargo run --example echo
cargo run --example html
Add this line to your Cargo.toml
:
...
[dependencies]
zvezda = { git = "https://gitlab.com/inzig0/zvezda.git" }
...