General Security
- Dependency check:
- Are we using crates with known vulnerabilities? (In future, run
cargo audit).
- Are we using crates with known vulnerabilities? (In future, run
- Unsafe:
- Is there an
unsafeblock? - Does it have a
// SAFETY:comment explaining why it holds? - Can it be rewritten using safe Rust?
- Is there an
- Secrets: - Are there hardcoded keys? Move them to
std::env::var.