In Rust, there are several random number generator implementation crates. Let’s compare and contrast them here.
In this article, we will look at the intermediate Rust concepts of iterators and closures in detail to go through values in a list.
The Relay compiler is a GraphQL code generation tool that was recently rewritten in Rust.
Learn about one of these Rust’s convenient functionalities, enums, and how to use the Option and Result types.
With concurrency in Rust, you can spawn child threads, pass data between threads using channels, or share state between threads using Arc and mutex.
Learn how to create a REST API with Rust and Postgres, including writing simple endpoints, handling errors, maintaining a connection to the database, persisting data to Postgres DB, and handling the request-response cycle.
Learn how to implement a very basic, backend-based, custom blockchain application in Rust using Substrate.
Learn how to build a blockchain application with a basic mining scheme, consensus, and peer-to-peer networking in just 500 lines of Rust.
In this guide, we’ll demonstrate how to make Rust library APIs more lenient without losing any functionality.
The Rust Reqwest library is built for fetching resources using the HTTP protocol. This guide explains how to get started with it.
To show Iced.rs in action, we’ll build a very basic frontend application using Iced and Rust, which uses JSONPlaceholder for fetching data.
This complete tutorial explores how to create a shared Rust module and build a full-stack web application with practical examples.