WeSearch

Cargo-Crap: Finding Untested Complexity in AI-Generated Rust Code

·8 min read · 0 reactions · 0 comments · 14 views
#rust#ai#software development#testing#complexity
Cargo-Crap: Finding Untested Complexity in AI-Generated Rust Code
⚡ TL;DR · AI summary

The article discusses the creation of cargo-crap, a tool designed to assess the safety of changing AI-generated Rust code. It introduces the Change Risk Anti-Patterns (CRAP) metric, which combines cyclomatic complexity and test coverage to identify risky code. The tool aims to provide measurable checks around the complexity introduced by AI agents in software development.

Key facts
Original article
Minikin
Read full at Minikin →
Opening excerpt (first ~120 words) tap to expand

May 13, 2026 12 min read cargo-crap: Finding Untested Complexity in AI-Generated Rust Code v0.2.0 cargo-crap is open source. Try it, star it, or read the docs. GitHub crates.io docs.rs Rust makes many bugs impossible. Memory safety. Thread safety. Ownership. Lifetimes. Exhaustive matching. Strong types. But Rust cannot answer one essential maintenance question: Is this code safe to change? A function can compile perfectly and still be risky to touch. It can have too many branches, too many special cases, too many hidden paths, and not enough tests to give you confidence. This is why I built cargo-crap is a Rust tool that finds functions that are both complex and poorly tested by calculating the Change Risk Anti-Patterns (CRAP) metric.

Excerpt limited to ~120 words for fair-use compliance. The full article is at Minikin.

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from Minikin