Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
/ xbe Public archive

Rust parser for Xbox executables (.xbe)

License

Notifications You must be signed in to change notification settings

jonas-schievink/xbe

Repository files navigation

Parser for Xbox Executables (XBE)

crates.io docs.rs CI

This crate provides a parser for .xbe files, which were used by the original Xbox to store executable files. It aims to provide a simple and well-documented interface.

Please refer to the changelog to see what changed in the last releases.

Usage

Start by adding an entry to your Cargo.toml:

[dependencies]
xbe = "0.1.1"

Then import the crate into your Rust code:

extern crate xbe;