20 lines
683 B
Markdown
20 lines
683 B
Markdown
|
+++
|
||
|
title = "Zero to Production in Rust"
|
||
|
date = 2023-03-20T17:33:13Z
|
||
|
[taxonomies]
|
||
|
categories = ["programming language", "rust"]
|
||
|
[extra]
|
||
|
status = "Incomplete"
|
||
|
+++
|
||
|
[Zero to Production in Rust](https://www.zero2prod.com/) by Luca Palmieri is a
|
||
|
book that proposes to teach readers how to write a simple and straightforward
|
||
|
microservice using Rust.
|
||
|
|
||
|
The book was written in 2021 and is, already, somewhat out of date. Where
|
||
|
applicable I have documented the changes I made while working my way through the
|
||
|
book. Those changes include:
|
||
|
|
||
|
- Neglecting CI/CD, since I'm a sole developer
|
||
|
- Developing entirely in a laptop environment
|
||
|
- Using Axum instead of Actix-Web for the server framework
|