vfstool_lib 0.9.0

A library for constructing and manipulating virtual file systems in Rust, based on OpenMW's VFS implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-3.0-only
#[cfg(any(feature = "beth-archives", feature = "zip"))]
mod archives;
mod diff;
mod index;
mod reports;

pub use self::index::{ConflictIndex, SourceConflicts};
#[cfg(test)]
#[path = "conflict/tests.rs"]
mod tests;