stfs 0.1.0

Parser for Xbox 360 STFS (Secure Transacted File System) packages
Documentation
pub mod error;
pub mod file_table;
pub mod hash;
pub mod hashing;
pub mod header;
pub mod io;
pub mod package;
pub(crate) mod serde_bytes;
pub(crate) mod serde_hex;
#[cfg(feature = "vfs")]
pub mod stfs_vfs;
pub mod types;
pub mod wrappers;

pub use error::StfsError;
pub use file_table::StfsFileEntry;
pub use file_table::StfsFileTable;
pub use file_table::StfsTreeNode;
pub use file_table::WalkEntry;
pub use hash::HashTableMeta;
pub use header::StfsVolumeDescriptor;
pub use header::SvodVolumeDescriptor;
pub use header::XContentHeader;
pub use io::ReadAt;
pub use io::SliceReader;
pub use package::StfsPackage;
pub use types::*;
pub use wrappers::bytes::BytesStfsReader;
pub use wrappers::StfsPackageReader;