Install pre-requisites for Zero To Production In Rust
mainTo use this project, you must have Rust and Docker installed. Depending on your operating system, additional tools are required to support the build and database processes.
### Windows
```bash
cargo install -f cargo-binutils
rustup component add llvm-tools-previewcargo install --version="~0.7" sqlx-cli --no-default-features --features rustls,postgresLinux
# Ubuntu
sudo apt-get install lld clang libssl-dev postgresql-client
# Arch
sudo pacman -S lld clang postgresqlcargo install --version="~0.7" sqlx-cli --no-default-features --features rustls,postgresMacOS
brew install michaeleisel/zld/zldcargo install --version="~0.7" sqlx-cli --no-default-features --features rustls,postgres