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?
There is also xsv, which I use pretty much any time I deal with CSV files. (Which isn't terribly often, but when I do deal with spectacularly big ones, it's nice to have something fast to slice and dice it with.)
For my own future reference, this seems a good place to note that the Matrix server Ruma is currently on Nightly but aims to work on Stable once its short list of Nightly features land.
I use habitat daily (I'm on the dev team for it, so take that for what it is worth). We are build on stable, though we'd required the nightly cargo for workspaces support.