Home

Awesome

Command-Line Rust: A Project-Based Primer for Writing Rust CLIs

This is the code repository for the Command-Line Rust (O'Reilly, 2022/2024, ISBN 9781098109417)

Author

Ken Youens-Clark kyclark@gmail.com

Synopsis

For several consecutive years, Rust has been voted "most loved programming language" in Stack Overflow's annual developer survey. This open source systems programming language is now used for everything from game engines and operating systems to browser components and virtual reality simulation engines. But Rust is also an incredibly complex language with a notoriously difficult learning curve.

Rather than focus on the language as a whole, this guide teaches Rust using a single small, complete, focused program in each chapter. Author Ken Youens-Clark shows you how to start, write, and test each of these programs to create a finished product. You'll learn how to handle errors in Rust, read and write files, and use regular expressions, Rust types, structs, and more.

Discover how to:

Git Branches

The book was originally published in 2022, when the clap (command-line argument parser) crate was a v2.33. The book was updated in 2024 to use clap v4, which has two patterns for parsing, builder (similar to the original v2.33 code) and derive. The branches are organized as follows:

Rust