Code for "Zero To Production In Rust", a book on API development using Rust.
Go to file
2023-09-13 09:54:00 +02:00
.cargo Update linker configuration for macs 2023-09-13 09:54:00 +02:00
.github/workflows feat(.github/workflows/general.yml): improving file a bit (mostly adding comments) (#202) 2023-03-28 13:42:00 +01:00
src Remove actix_rt direct usage. 2021-12-26 15:41:40 +01:00
tests Remove actix_rt direct usage. 2021-12-26 15:41:40 +01:00
.gitignore Scaffolding 2020-08-23 11:34:29 +01:00
Cargo.lock Update dependencies 2023-02-18 16:39:47 +00:00
Cargo.toml Update to actix-web v4 2022-02-25 23:56:02 +00:00
README.md Update README. 2022-03-14 11:16:54 +00: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 cargo:

cargo build

How to test

Launch cargo:

cargo test