1#![doc(
17 html_logo_url = "https://raw.githubusercontent.com/RustSec/logos/main/rustsec-logo-lg.png",
18 html_root_url = "https://docs.rs/cargo-audit/0.16.0"
19)]
20#![forbid(unsafe_code)]
21#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
22
23pub mod application;
24pub mod auditor;
25pub mod commands;
26pub mod config;
27pub mod error;
28pub mod lockfile;
29mod prelude;
30pub mod presenter;
31mod sarif;
32pub use sarif::SarifLog;
33
34#[cfg(feature = "binary-scanning")]
35mod binary_scanning;
36
37pub const VERSION: &str = env!("CARGO_PKG_VERSION");