cargo-audit 0.6.0

Audit Cargo.lock for crates with security vulnerabilities
cargo-audit-0.6.0 is not a library.
Visit the last successful build: cargo-audit-0.20.0

cargo audit

Latest Version Build Status Appveyor Status MIT/Apache 2 licensed Gitter Chat

Audit Cargo.lock for crates with security vulnerabilities reported to the RustSec Advisory Database.

This implements an idea originally proposed in this (closed) RFC:

https://github.com/rust-lang/rfcs/pull/1752

Requirements

cargo audit requires Rust 1.31 or later.

Installation

cargo audit is a Cargo subcommand and can be installed with cargo install:

$ cargo install cargo-audit

Once installed, run cargo audit at the toplevel of any Cargo project.

Using cargo audit on Travis CI

To automaticlly run cargo audit on every build in Travis CI, you can add the following to your .travis.yml:

language: rust
before_script:
  - cargo install --force cargo-audit
script:
  - cargo audit

Reporting Vulnerabilities

Report vulnerabilities by opening pull requests against the RustSec Advisory Database GitHub repo:

Screenshot

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.