Not-yet-Awesome Rust

A curated list of Rust code and resources that do NOT exist yet, but would be beneficial to the Rust community. – GitHub – not-yet-awesome-rust/not-yet-awesome-rust: A curated list of Rust code and… Read more

Similar

Achieving warp speed with Rust

If you're looking to write fast code in Rust, good news! Rust makes it really easy to write really fast code. The focus on zero-cost abstractions, the lack of implicit boxing and the static memory management means that even naïve code is often faster than... (more…)

Read more »

Command Line Applications in Rust

Rust is a statically compiled, fast language with great tooling and a rapidly growing ecosystem. That makes it a great fit for writing command line applications: They should be small, portable, and quick to run. Command line applications are also a great ... (more…)

Read more »