Registry / utility / iced-x86

iced-x86

JSON →
library1.21.0rscratesunverified

A blazing fast and correct x86/x64 disassembler, assembler and instruction decoder written in Rust.

# Cargo.toml [dependencies] iced-x86 = "1.21.0"
INSTALL
IMPORT
SIG · ICED-X86
I
iced-x86
utilityrustv1.21.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Decoder
use iced_x86::Decoder;

Decodes x86-64 instructions from byte code.

use iced_x86::Decoder; fn main() { let bytes = vec![0x48, 0x89, 0xE5]; let decoder = Decoder::new(64, &bytes, 0); for instruction in decoder { println!("{}", instruction); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.21.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
iced-x86 — cargo add iced-x86 · libregistry