|
|
|
|
|
by kibwen
3696 days ago
|
|
We just began working on an official site to showcase companies using Rust in production, here's an early look: https://www.rust-lang.org/friends.html (mouse over logos to see links to code and testimonials, we're still working on the UX). |
|
We especially like the way that Rust code is simultaneously high-level, strongly-typed and fast. The code feels "crisp", and if the compiler doesn't return any errors, the program will almost always work correctly on the first try. The code refactors easily. Plus the tooling (cargo, unit testing, etc.) is well thought out. And we like the ability to build static binaries against musl-libc and copy them into an Alpine Linux container.
I would happily use Rust again, at least if I wanted C++-level performance and most of the right libraries were already available for a given task. (I can find most basic, useful libraries on crates.io, but if I'm looking for something like an HTTP proxy server using async I/O, I may not necessarily find a mature implementation yet.)