Clippy
A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/ (by rust-lang)
Rustlings
:crab: Small exercises to get you used to reading and writing Rust code! (by rust-lang)
Clippy | Rustlings | |
---|---|---|
122 | 299 | |
12,257 | 59,140 | |
1.3% | 1.0% | |
10.0 | 9.4 | |
about 22 hours ago | 7 days ago | |
Rust | Rust | |
GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Clippy
Posts with mentions or reviews of Clippy.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-06-27.
-
Why We Chose Rust For Spin
cargo, rustfmt, clippy, rust-analyzer, and Rust’s robust unit testing capabilities together form a powerful ecosystem for managing large-scale projects like Spin.
-
Automated Testing and Dev Containers
Firstly, I added a section to run the code formatter rustfmt and the linter clippy:
-
More than you've ever wanted to know about errors in Rust
I couldn't find it in the API guidelines either. From what I understand, the idea is that any trait bounds, which includes generic type parameter bounds and lifetime bound on a type (struct or enum) would be repeated back in the impl block
there is a nice discussion on this issue here: https://github.com/rust-lang/rust-clippy/issues/1689
-
New clippy lint: detecting `&mut` which could be `&` in function arguments
You should not blindly follow clippy lints. They are sometimes wrong. Another example https://github.com/rust-lang/rust-clippy/issues/9782 .
- Let else will finally be formatted by rustfmt soon
-
My deduplication solution written in Rust beats everything else: casync, borg...
I often write () = f() to assert that f() is unit. Unfortunately clippy warns on such code ( https://github.com/rust-lang/rust-clippy/issues/9048 ). There are very recent pull requests for this bug, so hopefully this bug will be fixed very soon. But meanwhile I invented this workaround: [()] = [f()] :)
-
Any open source projects willing to take in juniors?
Apart from running clippy on many projects being essential, clippy is also an exceptionally welcoming project, no matter your prior knowledge.
-
Any new Opensource projects in (rust) looking for contributors. I want to start my journey as an OSS contributor.
clippy is a great place to get started :) though it isn't exactly new.
-
I want to contribute in a big project
clippy is also pretty compiler-adjacent and unlike rust-analyzer uses rustc's internal APIs. Don't let the size of the code base scare you off! It's actually feasible for a newcomer to contribute even such a substantial change as a new lint, and we have issues labeled as "good first issue" that come with mentorship, so you don't need to go it alone.
-
rustc-plugin: A framework for writing plugins that integrate with the Rust compiler
Yes, you could use it to write a lint. Although you might find it easier to just fork Clippy and add your own lints to their existing framework.
Rustlings
Posts with mentions or reviews of Rustlings.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-07-07.
-
Ziglings: Learn Zig by fixing broken programs
I think that's how it all started: https://github.com/rust-lang/rustlings
-
Rust Learning Roadmap: A Structured Path to Mastery.
✅ Code Daily – Practice with small exercises (try Rustlings). ✅ Read the Official Book – Supplement with The Rust Programming Language. ✅ Join the Community – Engage on Rust’s Discord or forums. ✅ Build Projects – Apply concepts by creating CLI tools, web servers, or games.
-
How to Get Started with Rust Programming
Rustlings - Small exercises to get you used to reading and writing Rust code
-
Building a simple Kubernetes Controller in Rust - Part 1
Recently I got this obsession to learn Rust. While there are plenty of documentation around, like Rust Book, some good published books, tutorials, rustling, I always struggle to learn something when I am not doing something practical, so I have decided to go to my comfort zone and write a Kubernetes Controller using kube-rs.
-
auto y2025 = new Year(); // Resolutions
Finish again the rustlings.
-
Swift 6
I’ve been meaning to do this for years, and just played around with rust a bit (liked it, but the wrappers around some c++ stuff i wanted to use were half baked). Learning rust, there was this “rustlings” thing [0] that was a set of guided exercises to go alongside the rust book. Fastest I’ve ever picked up a language, thanks to that. Do you or anyone know anything similar for c++?
[0] https://rustlings.cool/
-
To-Do from CLI with Rust
Rustlings
-
Rust from a Web perspective
It is becoming more and more applicapible to the Web... Servers and clients with #wasm, you can actually natively import a rust module into node.js for extra threads or heavy lifting. Start learning!
-
Up(sun) and running with Rust: The game-changer in systems programming
Practice with "Rust by Example" and "Rustlings"
-
100 Exercises to Learn Rust
Surprised no one has mentioned another great and similar resource called Rustlings [0] (yes very punny name). You are given some files with todo statements which you'll need to fix and make the code compile and pass all the tests. It's an interactive way to learn which is what got me through learning Rust a few years ago.
[0] https://github.com/rust-lang/rustlings
What are some alternatives?
When comparing Clippy and Rustlings you can also consider the following projects:
rustfmt - Format Rust code
rust-learning - A bunch of links to blog posts, articles, videos, etc for learning Rust
rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]
rust-by-example - Learn Rust with examples (Live code editor included)
vscode-rust
rust-by-practice - Learning Rust By Practice, narrowing the gap between beginner and skilled-dev through challenging examples, exercises and projects.