Rust Daily: Embedded, cargo-safe, and Gitoxide Updates

Rust Daily: Embedded, cargo-safe, and Gitoxide Updates

Embedded Rust News: Issue 59 Zenoh no-std support standard version Rust exception causing Cloudflare crash Google launches Wasefire for embedded firmware Arduino terminology update sparks controversy Zephyr version 4.3 released Fluid Kernels Simulator86 is an experimental Rust embedded simulator Rust 1.91 Released Read: https://www.theembeddedrustacean.com/p/the-embedded-rustacean-issue-59 Tutorial “The Impatient Programmer’s Guide to Bevy and Rust” Chapter 3 … Read more

The ‘Ghost’ in Rust Compilation: A Peculiar Build Failure Case

Introduction Have you ever encountered a strange situation during Rust development where running <span>cargo check</span> works perfectly in one directory, but fails to compile in another? Or where the CI environment fails to build, but it passes locally? Recently, a user of cargo-semver-checks faced such a peculiar issue: the tool reported that it could not … Read more

Rust 1.91.1: Key Security Fixes for Wasm and illumos – Why You Should Upgrade

If you are new to Rust and notice the version number has changed from <span>1.91.0</span> to <span>1.91.1</span>, a common reaction might be: “Isn’t this just a minor patch? There probably isn’t much to see, right?” However, the official Rust blog makes it clear: 1.91.1 is not about adding new features, but rather urgently fixing two … Read more

Rust News: Release of Rust 1.91.0

Rust News: Release of Rust 1.91.0 Core Updates: Platform support for Windows on Arm64 upgraded to Tier 1; lint checks for dangling raw pointers; stabilization of numerous APIs; Cargo updates stable build.build-dir configuration 1. Platform Support The target aarch64-pc-windows-msvc, which is Windows on Arm64, now enjoys the highest level of support assurance. Rust uses a … Read more

Rust 1.90 Introduces Workspace Publishing Support for Cargo

Rust 1.90 Introduces Workspace Publishing Support for Cargo

Abstract: Rust developers can now automatically publish all crates in a workspace in the correct order without manually sorting individual releases. Dear developers, the Rust language release team has announced Rust 1.90, an update to the widely popular memory-safe programming language, which brings native support for workspace publishing to the Cargo package manager.Rust 1.90 also … Read more

Getting Started with Tauri – Development Environment

Note: This setting is only required when developing Tauri applications. Users of the final application do not need to take any action. The first step is to install Rust[1] and system dependencies. For Windows and macOS, if you want to learn more about the development environment for different platforms, please refer to the Tauri Official … Read more

Getting Started with Rust: Installation Guide

Getting Started with Rust: Installation Guide

1. Installation Rustup is the official version management tool for Rust. Installing rustup will automatically install Rust (it will also install Cargo, which is Rust’s build system and package manager, very important), so we only need to install rustup. ① Official installation address https://rustup.rs/# ② For Mac or Linux systems curl –proto ‘=https’ –tlsv1.2 -sSf … Read more

The Evolution of Rust Web Frameworks: From Niche to Mainstream

The Evolution of Rust Web Frameworks: From Niche to Mainstream

Introduction As of 2025, Rust has become an undeniable force in the field of web development. But did you know that just a few years ago, Rust was merely a “niche player” in this domain? A developer named Loïc Labeye, who has been using Rust since 2020, recently shared his observations and thoughts on the … Read more

Rust 1.87.0 Released! A Comprehensive Analysis of the Latest Version Unveiling New Heights in Performance and Safety

Rust 1.87.0 Released! A Comprehensive Analysis of the Latest Version Unveiling New Heights in Performance and Safety

On May 16, 2025, the highly anticipated Rust programming language welcomed its new stable version—Rust 1.87.0! As one of the leading, safest, and high-performance system-level languages in the industry, Rust continuously enhances the development experience and underlying technology through version upgrades. This 1.87.0 iteration brings several important new features and stability improvements, covering core language … Read more

Introduction to Rust for Android Developers

Introduction to Rust for Android Developers

Original tutorial linkComprehensive Rust This is a free Rust tutorial developed by the Google Android team. The tutorial comprehensively covers all aspects of Rust, from basic syntax to advanced topics such as generics and error handling. The goal of this tutorial is to teach the Rust programming language. We assume you have no prior knowledge … Read more