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 // Uses the default limits: 1GiB input file size, 8MiB audit data size let info = audit_info_from_file(&PathBuf::from("path/to/file"), Default::default())?; Functions to load the data from a Read instance or from &[u8] are also provided, see the documentation.

Alternatives

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.