An open API service indexing awesome lists of open source software.

https://github.com/highb/rust-zero2prod

Following the zero-to-production Rust book https://www.zero2prod.com/
https://github.com/highb/rust-zero2prod

Last synced: 2 months ago
JSON representation

Following the zero-to-production Rust book https://www.zero2prod.com/

Awesome Lists containing this project

README

          

# Zero to Production in Rust

## What is this?

This is my implementation of the [Zero to Production in Rust](https://www.zero2prod.com/) book by Luca Palmieri.

## Dependencies

Currently uses lld or zld for linking. May experiment with [mold](https://github.com/rui314/mold) in the future.k

### 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`