Articles by tag: rust
Face swap on Rust: 60 FPS without Python | Technical Breakdown
How to build a face swap app on pure Rust without Python. We break down the lock-free threads architecture, memory optimization, and use of ONNX Runtime. Download the binary and try it.
Rust 1.94.0: New Methods and Cargo Configuration | IT Review
Rust 1.94.0 Release Adds array_windows Method, include Key in Cargo, and TOML 1.1 Support. Learn How Updates Will Simplify Your Code. Update via rustup!
Rust 1.95.0: cfg_select!, if-let guards and stable APIs | Overview
Breaking down the Rust 1.95.0 release: cfg_select! macro replaces cfg-if, if-let guards in match, stabilization of key APIs. What developers need to know? Read in the overview.
Bug in imageproc: API change in image-rs for RGBA | Analysis
Why did fixing the bug in imageproc require changing the API in image-rs? Technical analysis of the error when rendering text on RGBA images. Solution for Rust developers.
Traceroute on Rust: how route tracing works
Breaking down the traceroute implementation on Rust. How TTL and ICMP create a network map. Code with explanations for network engineers and developers.
Servo 0.1.0 on Rust: release and LTS
First release of Servo 0.1.0 with multithreaded rendering and crate package. LTS versions every 6 months. Integration into Firefox. Learn the details for developers.
TIOBE April 2026: top programming languages
TIOBE Rating Analysis for April 2026: Python falls, C at 2nd, Rust at 16th. Data on top-20, dynamics of R, Perl, legacy languages. For developers — read the details.
AltSendme 0.3.5: P2P file exchange with QUIC
Explore the AltSendme 0.3.5 update: end-to-end QUIC/TLS encryption, Android support, NAT bypass. Ideal for developers. Download and test P2P file transfer without clouds.
Tauri Build for Windows and AUR
Setting up Rust, Node.js and Tauri for Windows. Building .exe without errors, testing on Win10/11. Publishing PKGBUILD to AUR for Arch. Instructions for developers.
Development of an authorization service on Rust: tokens, encryption, Redis
Practical guide to creating an authorization service on Rust with JWT, opaque tokens and Redis. Learn about cryptography and best practices for developers.