Some checks failed
Orchestrator / Commit Message Validation (push) Has been skipped
Orchestrator / Lint (push) Successful in 2m5s
Orchestrator / Windows (x86-64) (push) Failing after 6m13s
Orchestrator / Linux (x86-64) (push) Failing after 20m59s
Orchestrator / Create Release (push) Has been skipped
Major additions to the xenia-rs Rust port: - CPU: ~170 new PPC opcode implementations (FPU, VMX128, 64-bit ALU, load/store variants) - XEX: Full LZX (normal) decompression pipeline with AES-128-CBC decryption via mspack FFI - XEX: Parse file format info, import libraries, and security info AES key from headers - VFS: Rewrite XISO disc image to use seek-based I/O (handles 7GB+ images without loading into memory) - App: Auto-detect ISO files and extract default.xex for all CLI commands - App: Add `info` and `browse` CLI subcommands - Kernel: Expand HLE exports from 14 to 40 stubs (memory, threading, TLS, I/O, video) - Memory: Add bounds checking on all guest memory accesses to prevent segfaults - Types: Add Vec128 array-based accessors (from_u32x4_array, from_f32x4_array, etc.) Tested against Project Sylpheed (USA) disc image - all four CLI commands (browse, info, disasm, exec) work correctly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/xenia-types",
|
|
"crates/xenia-memory",
|
|
"crates/xenia-cpu",
|
|
"crates/xenia-xex",
|
|
"crates/xenia-vfs",
|
|
"crates/xenia-kernel",
|
|
"crates/xenia-gpu",
|
|
"crates/xenia-apu",
|
|
"crates/xenia-hid",
|
|
"crates/xenia-debugger",
|
|
"crates/xenia-app",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "BSD-3-Clause"
|
|
|
|
[workspace.dependencies]
|
|
# Shared types
|
|
xenia-types = { path = "crates/xenia-types" }
|
|
xenia-memory = { path = "crates/xenia-memory" }
|
|
xenia-cpu = { path = "crates/xenia-cpu" }
|
|
xenia-xex = { path = "crates/xenia-xex" }
|
|
xenia-vfs = { path = "crates/xenia-vfs" }
|
|
xenia-kernel = { path = "crates/xenia-kernel" }
|
|
xenia-gpu = { path = "crates/xenia-gpu" }
|
|
xenia-apu = { path = "crates/xenia-apu" }
|
|
xenia-hid = { path = "crates/xenia-hid" }
|
|
xenia-debugger = { path = "crates/xenia-debugger" }
|
|
|
|
# External dependencies
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
bitflags = "2"
|
|
byteorder = "1"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
aes = "0.8"
|