Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.04 KB

README.md

File metadata and controls

30 lines (23 loc) · 1.04 KB

Build a Simple API in Rust

This tutorial will teach you how to build a simple CRUD API in Rust using the Warp web framework and Tokio. We'll use Rust and a few well-known libraries to create a RESTful API that runs on a Warp HTTP server and stores data in memory.

Build a Simple API in Rust

Topics Covered

  • Run the Rust API Project Locally
  • Setup the Rust Project
  • Create the API Model
  • Create the API Response Structs
  • Create the API Route Handlers
    • Health Checker Route Handler
    • Find All Records Route Handler
    • Create Record Route Handler
    • Find One Record Route Handler
    • Edit Record Route Handler
    • Delete Record Route Handler
  • Create the API Routes and Setup CORS
  • Test the API Endpoints
    • Add New Record
    • Update a Record
    • Get a Record
    • Get All Records
    • Delete a Record

Read the entire article here: https://codevoweb.com/build-a-simple-api-in-rust/