+ 1
Web api with rust and rocket
Do you know about any good resources for learning the rocket frame work for rust
2 Respostas
+ 1
https://rocket.rs/v0.4/guide/
You will find most Rust project sites under projectname.rs. Also most almost every project will have a doc page where you can find more details about the implementation (Rocket is sadly an exception here, but it has good docs on the website).
Rockets seems to be the most easy framework for beginners but I can't tell you much about it because I haven't used it so far. But I can personally recommend Actix (https://actix.rs). Actix uses a different approach that is quite easy to use in my opinion but makes it by far the fastest web framework in the world, at least in most categories. So if you care about performance Actix will be the better choice.
And if you have more questions about Rust you can just mention me, or ask them here :)
+ 2
Aaron Eberhardt thank you! I'll give Actix a try