Add serde/serde_json for structured parsing of the export database, replacing the hand-rolled markdown table parser with type-safe JSON deserialization. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
343 B
TOML
15 lines
343 B
TOML
[package]
|
|
name = "xex2tractor"
|
|
version = "0.8.1"
|
|
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"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|