You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At some point in the future we will probably want to lint our dependencies with cargo-deny. It might be good to set-up cargo-deny early-on to catch issues (such as deprecated/unmaintained crates) before we start relying too much on some crates.
The questions we need to answer:
What can cargo-deny do?
Among the available lints, which one de we want to put in place?
When do we want to run the lints? Once a week? On every PR? Should they block merging?
The text was updated successfully, but these errors were encountered:
@CharlyCst cargo vet is a tool that seems to help focusing on auditing the code each time there is a change. I don't think it brings much value. That being said, I created a follow up PR with Clippy, which is a linter for Rust and is in my opinion a nice complement to cargo fmtand cargo deny.
At some point in the future we will probably want to lint our dependencies with
cargo-deny
. It might be good to set-upcargo-deny
early-on to catch issues (such as deprecated/unmaintained crates) before we start relying too much on some crates.The questions we need to answer:
cargo-deny
do?The text was updated successfully, but these errors were encountered: