Tag: rust

Rust Logo

Comparing random number generators in Rust

Dev

In Rust, there are several random number generator implementation crates. Let’s compare and contrast them here.

Eze Sunday
Apr 20, 2022 ⋅ 5 min read
Command Line Argument Parsing In Rust Using Clap

Command line argument parsing in Rust using Clap

Dev

Manually parse command line arguments in Rust apps using Clap, a library that provides functionality to generate parsing logic for arguments.

Yashodhan Joshi
Apr 19, 2022 ⋅ 14 min read
Rust Deep Dive Into Iterators And Closure

A deep dive into Rust iterators and closures

Dev

In this article, we will look at the intermediate Rust concepts of iterators and closures in detail to go through values in a list.

Manish Shivanandhan
Apr 15, 2022 ⋅ 5 min read
Exploring React Relay 13’s Rust Compiler

Exploring React Relay 13’s Rust compiler

Dev

The Relay compiler is a GraphQL code generation tool that was recently rewritten in Rust.

Samson Omojola
Apr 13, 2022 ⋅ 5 min read
Understanding Rust Option Results Enums

Understanding Rust Option and Result enums

Dev

Learn about one of these Rust’s convenient functionalities, enums, and how to use the Option and Result types.

Greg Stoll
Apr 1, 2022 ⋅ 5 min read
Rust Concurrency Deep Dive Guide

Understanding concurrency and the Rust programming language

Dev

With concurrency in Rust, you can spawn child threads, pass data between threads using channels, or share state between threads using Arc and mutex.

Alex Merced
Mar 14, 2022 ⋅ 5 min read
How to create a backend API with Rust and Postgres

How to create a backend API with Rust and Postgres

Dev

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.

Olasunkanmi John Ajiboye
Feb 22, 2022 ⋅ 6 min read
How To Build A Custom Blockchain Implementation In Rust Using Substrate

How to build a custom blockchain implementation in Rust using Substrate

Dev

Learn how to implement a very basic, backend-based, custom blockchain application in Rust using Substrate.

Mario Zupan
Feb 14, 2022 ⋅ 12 min read
How to Build a Blockchain in Rust

How to build a blockchain in Rust

Dev

Learn how to build a blockchain application with a basic mining scheme, consensus, and peer-to-peer networking in just 500 lines of Rust.

Mario Zupan
Nov 25, 2021 ⋅ 24 min read
Rust Logo Over Brown Background

Improving overconstrained Rust library APIs

Dev

In this guide, we’ll demonstrate how to make Rust library APIs more lenient without losing any functionality.

Andre Bogus
Nov 9, 2021 ⋅ 6 min read
Rust Logo

Making HTTP requests in Rust with Reqwest

Dev

The Rust Reqwest library is built for fetching resources using the HTTP protocol. This guide explains how to get started with it.

Ben Holmes
Nov 2, 2021 ⋅ 6 min read
Iced.rs Tutorial: How to Build a Rust Frontend Web App

Iced.rs tutorial: How to build a simple Rust frontend web app

Dev

To show Iced.rs in action, we’ll build a very basic frontend application using Iced and Rust, which uses JSONPlaceholder for fetching data.

Mario Zupan
Oct 12, 2021 ⋅ 12 min read