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/
- Host: GitHub
- URL: https://github.com/highb/rust-zero2prod
- Owner: highb
- Created: 2022-03-19T23:51:37.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-25T01:29:37.000Z (over 3 years ago)
- Last Synced: 2026-04-25T15:35:02.220Z (2 months ago)
- Language: Rust
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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`