lief 1.0.0

Official Rust bindings for LIEF
//! Assembly/Disassembly Module
//!
//! ### Getting Started
//!
//! One can start disassembling code by using the different functions exposes in the
//! [`crate::generic::Binary`] trait:
//!
//! ```
//! fn disassemble(target: &dyn lief::generic::Binary) {
//!     for inst in target.disassemble_symbol("_entrypoint") {
//!         println!("{}", inst);
//!     }
//! }
//! ```
//!
//! An instruction is represented by the enum: [`Instructions`] which implements the **trait**
//! [`Instruction`].
//!
//! For architecture-dependant API, you can check the following structures:
//!
//! - [`aarch64::Instruction`]
//! - [`x86::Instruction`]
//! - [`arm::Instruction`]
//! - [`powerpc::Instruction`]
//! - [`riscv::Instruction`]
//! - [`mips::Instruction`]
//! - [`ebpf::Instruction`]

pub mod aarch64;
pub mod arm;
pub mod config;
pub mod ebpf;
pub mod instruction;
pub mod mips;
pub mod powerpc;
pub mod riscv;
pub mod x86;

#[doc(inline)]
pub use instruction::{Instruction, Instructions};

#[doc(inline)]
pub use config::AssemblerConfig;