#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustSec/logos/main/rustsec-logo-lg.png",
html_root_url = "https://docs.rs/cargo-audit/0.16.0"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, trivial_casts, unused_qualifications)]
pub mod application;
pub mod auditor;
pub mod commands;
pub mod config;
pub mod error;
pub mod lockfile;
mod prelude;
pub mod presenter;
mod sarif;
pub use sarif::SarifLog;
#[cfg(feature = "binary-scanning")]
mod binary_scanning;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");