Code for "Zero To Production In Rust", a book on API development using Rust.
Go to file
2023-09-14 09:47:55 +02:00
.cargo Update linker configuration for macs 2023-09-13 09:54:47 +02:00
.github/workflows Update to sqlx 0.7 2023-09-14 09:47:55 +02:00
migrations Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
scripts Update to sqlx 0.7 2023-09-14 09:47:55 +02:00
src Fix CI 2022-10-01 18:32:25 +01:00
tests Fix clippy errors 2021-12-28 17:47:16 +01:00
.env Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
.gitignore Scaffolding 2020-08-23 11:34:29 +01:00
Cargo.lock Update to sqlx 0.7 2023-09-14 09:47:55 +02:00
Cargo.toml Update to sqlx 0.7 2023-09-14 09:47:55 +02:00
configuration.yaml Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
README.md Update deps 2022-10-01 14:29:16 +01:00

Zero To Production In Rust

Zero To Production In Rust is an opinionated introduction to backend development using Rust.

This repository serves as supplementary material for the book: it hosts several snapshots of the codebase for our email newsletter project as it evolves throughout the book.

Chapter snapshots

The main branch shows the project at the end of the book.

You can browse the project at the end of previous chapters by switching to their dedicated branches:

Pre-requisites

You'll need to install:

There are also some OS-specific requirements.

Windows

cargo install -f cargo-binutils
rustup component add llvm-tools-preview

Linux

# Ubuntu 
sudo apt-get install lld clang
# Arch 
sudo pacman -S lld clang

MacOS

brew install michaeleisel/zld/zld

How to build

Launch a (migrated) Postgres database via Docker:

./scripts/init_db.sh

Launch cargo:

cargo build

How to test

Launch a (migrated) Postgres database via Docker:

./scripts/init_db.sh

Launch cargo:

cargo test