Registry / utility / ihex
library3.0.0rscratesunverified

A Rust library for parsing and generating Intel HEX (IHEX) objects, commonly used for microcontroller firmware.

# Cargo.toml [dependencies] ihex = "3.0.0"
INSTALL
IMPORT
SIG · IHEX
I
ihex
utilityrustv3.0.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.

Record
use ihex::Record;

Parse an Intel HEX string into records.

use ihex::Record; fn main() -> Result<(), Box<dyn std::error::Error>> { let hex = ":100000000C945A000C945E000C9462000C94660024\n"; let records = ihex::parse(hex)?; for record in records { println!("{:?}", record); } Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.0.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
ihex — cargo add ihex · libregistry