- New src/exports.rs: embeds doc/xbox360_exports.md via include_str! and lazily parses it into a lookup table (OnceLock). Covers 2,913 exports across xboxkrnl.exe, xam.xex, and xbdm.xex. - New src/imports.rs: decodes import records from extracted PE images by reading the u32 at each import address, extracting record type (variable/thunk) and ordinal, and resolving against the export DB. - inspect command now shows a full resolved imports table with names. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
277 B
TOML
13 lines
277 B
TOML
[package]
|
|
name = "xex2tractor"
|
|
version = "0.7.0"
|
|
edition = "2024"
|
|
description = "A tool for extracting and inspecting Xbox 360 XEX2 executable files"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
aes = "0.8.4"
|
|
cbc = "0.1.2"
|
|
clap = { version = "4.6.0", features = ["derive"] }
|
|
lzxd = "0.2.6"
|