Rocket is an application that does exactly what you expect it to do. For example, if you visit /hello/John/58, you will see a greeting that says, “Hello, 58 year old named John!” Unlike other applications, Rocket does not blindly call the hello function if the age is not a valid u8. It tries other matching routes or returns a 404 error. Rocket also makes form handling simple and declarative, automatically parsing and validating form data into your structures. File uploads, JSON support, templating, and other essential features are all built-in. Rocket is ready to launch and offers a variety of additional features to make application development easier.
https://rocket.rs/