#rust
6 posts tagged with #rust
Every article below is hand-written, technically reviewed, and focused on rust. Posts cover real-world architecture decisions, code-level implementation patterns, and trade-offs you'll only discover after shipping production systems.
Developer Tools Topcoat Rust Web Framework Tutorial [2026]: Auth + DB + SSR
A production-minded Topcoat Rust web framework tutorial: project setup, routes + SSR mental model, Postgres + migrations, auth, forms, profiling, and deploy gotchas.
Developer Tools Rust Reproducible Builds + SBOM + Signed Artifacts [2026]
A 2026-ready Rust release pipeline: pin toolchains, make builds reproducible, gate deps with cargo-vet, generate SBOM + SLSA provenance, and sign everything with keyless cosign.
Developer Tools How to Build a Rust Version Bump Tool [2026 Tutorial]
Build a CI-safe Rust release toolchain: semver bump rules, workspace updates, changelog generation, annotated/signed git tags, and reproducible benchmarks.
Developer Tools How to Reduce Rust Compile Time [2026] (sccache + mold)
A measurable 2026 playbook to reduce Rust compile time: profile with Cargo timings, fix the build graph, get real sccache hit rates, and cut link time with mold.
Developer Tools Rust Allocator: jemalloc vs mimalloc vs tcmalloc for P99 [2026]
Allocator switching can cut P99 latency in Rust services. It can also do absolutely nothing. Here’s how to benchmark it like an adult and tune jemalloc without cargo-culting.
Developer Tools Rust WASM vs TypeScript Performance: Why the 'Faster' Language Lost by 25% [2026]
A developer rewrote a Rust WASM JSON parser in TypeScript and it ran 25% faster. Here's why the JS/WASM bridge kills performance for the wrong workloads.