Essential Rust Tools
The Rust community helps each other through effective narrative documentation and attention to error messages, and the robust tooling around Rust drives momentum, overcoming some of the natural hurdles when diving into a new language. After getting familiar with file which streamlines development and enables reproducible builds, I found command line management easier with cargo-edit:
The Rust Wasm tooling has improved dramatically over the past year — wasm-pack is the “one-stop shop for building, testing, and publishing Rust-generated WebAssembly.” For many uses of Rust, compiled code size doesn’t matter, but for Web apps, it is important to keep an eye on download size:
Interesting to note that Web Assembly isn’t just for client-side browser code.
Source: www.ultrasaurus.com