DEV Community

Discussion on: Where Can I Start with Rust Programming ?

Collapse
 
reuben21 profile image
Reuben Coutinho

yes for web dev

Collapse
 
stevepryde profile image
Steve Pryde • Edited

For web servers, definitely check out rocket.rs and also warp. For the latter you will also want to brush up on rust Async / await. There are some really good YouTube videos about rust Async as well as a separate "Async book"

For web client, my favourite is yew but several other exist as well.

Have a look at arewewebyet.org for a catalogue of what's available

Thread Thread
 
reuben21 profile image
Reuben Coutinho

Thanks alot