mirror of
https://github.com/xavo95/repak.git
synced 2025-01-31 06:59:35 +00:00
10 lines
298 B
Rust
10 lines
298 B
Rust
fn main() -> Result<(), un_pak::Error> {
|
|
let pak = un_pak::Pak::new(
|
|
std::io::BufReader::new(std::io::Cursor::new(include_bytes!("rando_p.pak"))),
|
|
un_pak::Version::CompressionEncryption,
|
|
)?;
|
|
for file in pak.entries.keys() {
|
|
println!("{file}")
|
|
}
|
|
Ok(())
|
|
}
|