xgadget 0.11.1

Fast, parallel, cross-variant ROP/JOP gadget search for x86/x64 binaries.
Documentation
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
/// Library errors
pub enum Error {
    /// Unsupported architecture
    #[error("unsupported architecture")]
    UnsupportedArch,
    /// Unsupported file format
    #[error("unsupported file format")]
    UnsupportedFileFormat,
    /// Failed to determine filename
    #[error("failed to determine filename")]
    NoFileName,
    /// No binaries to search
    #[error("No binaries to search")]
    NoBinaries,
    /// Failed to read binary file
    #[error("failed to read binary file")]
    FileReadError(#[from] std::io::Error),
}