I’m gathering examples of applications (not libraries) which run on stable Rust and are built using Cargo.
For instance, Ripgrep is a good example ofthe kind of application I’m talking about because it runs on Rust 1.9 Stable or newer, is built with Cargo, and is an alternative to Grep for command-line use.
Although Redox is awesome, it’s not what I’m looking for here because it requires Rust Nightly and uses a complex build system in addition to Cargo.
And although Serde is also great, it’s not the kind of example I’m looking for right now because it’s used almost exclusively from inside other Rust programs, so it’s more like a library than an application.
What are your favorite examples of Rust applications?
Thank you!