Dockerizing a Rust API Project, SQL Database and pgAdmin
In my previous article titled “How to Write Unit Tests for Your Rust API“, we explored unit tests in Rust and created them for the API we’ve been building throughout…
Continue readingIn my previous article titled “How to Write Unit Tests for Your Rust API“, we explored unit tests in Rust and created them for the API we’ve been building throughout…
Continue readingIn this article, you will learn how to write unit tests for your Rust API project using the Actix-web framework and the SQLx toolkit. It’s crucial to note that these…
Continue readingIn this article, you will learn how to implement JWT Authentication and Authorization in Rust using Actix-Web extractors (middleware). Let’s outline our path: we’ll start by examining JavaScript implementations, and…
Continue readingIn this article, you will learn how to integrate Swagger UI, Redoc, and RapiDoc into a Rust API project. Yes, we will be generating three documentation UIs, but don’t worry,…
Continue readingIn this article, you will learn how to build a Rust API with unit testing in mind. This means we will take a modular approach, which will make our lives…
Continue readingIn this guide, you will learn how to add a forgot/reset password feature to a Rust API. The API is built on top of the high-performance Axum framework and utilizes…
Continue readingIn this article, we will explore the process of building a REST API in Rust with features like user registration, email verification, login, and logout capabilities. Our API will be…
Continue readingIn this article, you will learn how to send HTML emails in Rust using the Simple Mail Transfer Protocol (SMTP). We’ll begin by creating HTML templates using the Handlebars templating…
Continue readingIn this article, you will learn how to implement OAuth for Google and GitHub in a Rust frontend application using the Yew.rs framework. Additionally, I will provide backend APIs built…
Continue readingIn this article, we’ll explore how to generate and verify JSON Web Tokens (JWTs) in Rust using the jsonwebtoken crate. While the library offers support for a range of cryptographic…
Continue readingAre you looking to build a lightning-fast RESTful API with Rust? Then you’re in the right place! In this article, we’ll explore how to create a robust API that supports…
Continue readingIn this article, you’ll discover how to use the Axum framework to build a RESTful API in Rust that supports basic CRUD (Create, Read, Update, Delete) operations against a MySQL…
Continue reading