Ask HN: Best Repos for Learning Rust?

6 points by kotrunga ↗ HN
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 :)

2 comments

[ 12.2 ms ] story [ 15.5 ms ] thread
Great question!

lessee...some of my favs are

rust by example

rust 4 cpp programmers

https://github.com/mrDIMAS/ <- All of this, the cargo.toml has like 4 dependencies.

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.