https://github.com/whatrocks/zero2prod
project from "zero to production in rust" book
https://github.com/whatrocks/zero2prod
Last synced: 11 months ago
JSON representation
project from "zero to production in rust" book
- Host: GitHub
- URL: https://github.com/whatrocks/zero2prod
- Owner: whatrocks
- Created: 2022-10-13T13:19:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-18T19:21:37.000Z (about 3 years ago)
- Last Synced: 2025-01-17T03:04:36.953Z (12 months ago)
- Language: Rust
- Size: 30.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zero2prod
[](https://github.com/whatrocks/zero2prod/actions/workflows/general.yml) [](https://github.com/whatrocks/zero2prod/actions/workflows/scheduled-audit.yml)
project from book "zero to production in rust"
## useful commands
```bash
# run commands on save
cargo watch -x check -x text -x run
# lint and fail if isses
cargo clippy -- -D warnings
# format check
cargo fmt -- --check
# check for known security issues
cargo audit
# expand macros
cargo +nightly expand
```