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.

Features

Usage

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.

Alternatives

rust-audit-info is a command-line interface for 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.