High-level crate to extract the dependency trees embedded in binaries by cargo auditable
.
Deserializes them to a JSON string or Rust data structures, at your option.
unsafe
in serde_json
and its dependencies, but only in serialization, which isn't used here).std
.rust, ignore
// Uses the default limits: 1GiB input file size, 8MiB audit data size
let info = audit_info_from_file("path/to/file", Default::default())?;
Functions to load the data from a Read
instance or from &[u8]
are also provided,
see the documentation.
rust-audit-info
is a command-line interface to this crate.
If you need an even lower-level interface than the one provided by this crate,
use the auditable-extract
and
auditable-serde
crates.