rage-rpf 0.4.0

RAGE Package File (RPF) archive parser and decryptor for GTA V and related titles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod archive;
pub mod crypto;
pub mod tree;
pub mod writer;
pub mod ytd;
mod tests;

pub use archive::{RpfArchive, RpfEntry, RpfEntryKind, RpfEncryption, RpfFile, RpfVersion,
                  resource_size_from_flags, resource_version_from_flags,
                  RPF0_MAGIC, RPF2_MAGIC, RPF3_MAGIC, RPF4_MAGIC, RPF6_MAGIC,
                  RPF7_MAGIC, RPF8_MAGIC, RSC7_MAGIC, RSC8_MAGIC, IMG3_MAGIC};
pub use crypto::keys::GtaKeys;
pub use tree::{DirNode, FileRef, build_directory_tree, list_all_files};
pub use writer::RpfBuilder;
pub use ytd::{parse_ytd, TextureFormat, YtdTexture};