Rewritten in Rust: Modern Alternatives of Command-Line Tools

Rewritten in Rust: Modern Alternatives of Command-Line Tools… Read more

Similar

Speeding up Rust builds inside Docker

Currently it is not possible to instruct cargo, the Rust package manager, to build only the dependencies of the software you are compiling! This means you can't easily pre-install build dependencies. Luckily you can workaround this with cargo build -p! I'... (more…)

Read more »

Writing Shared Libraries in Rust

Every tool that gets big enough eventually provides a way to support third-party logic. Maybe you expose APIs for clients to call. Maybe you take some code and run it in a sandbox. Maybe you embed a Lua interpreter. (more…)

Read more »