Live data from Hacker News

Ask HN: Best Repos for Learning Rust?

news.ycombinator.com

1–3 of 3 posts

Ask HN: Best Repos for Learning Rust?

#1
What are some of the best repositories in the wild for beginners to learn Rust by reading through the source code?

Looking for something that doesn't use too many external crates, and mainly relies on "vanilla" Rust.

Thanks :)

Re: Ask HN: Best Repos for Learning Rust?

#3
Great question!

lessee...some of my favs are

rust by example

rust 4 cpp programmers

https://github.com/mrDIMAS/ OH, I think there's like `Unofficial Rust patterns` too!

you could search for things like `rust playground` or `rust fun`, that's what I did I think, on github.

Also I like to build packages with cargo and pay attention to which crates get used for which apps (like ripgrep, or grex, or bat, or lsd, ). Then go back and have a go.

Oh , and `Practicle Rust` I think had some good examples on github, like a cowsay clone.