mirror of
https://github.com/xavo95/repak.git
synced 2025-01-19 03:09:12 +00:00
11 lines
298 B
Rust
11 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(())
|
||
|
}
|