[package]
edition = "2024"
rust-version = "1.87"
name = "vfstool"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command-line tool for constructing, manipulating, and introspecting virtual file systems in Rust, based on OpenMW's VFS implementation."
homepage = "https://github.com/DreamWeave-MP/vfstool"
readme = "README.md"
keywords = [
"vfs",
"openmw",
"gamedev",
"modding",
"bethesda",
]
license = "GPL-3.0-only"
repository = "https://github.com/DreamWeave-MP/vfstool"
resolver = "2"
[[bin]]
name = "vfstool"
path = "src/main.rs"
[[test]]
name = "cli_next_level"
path = "tests/cli_next_level.rs"
[[bench]]
name = "validate_chain"
path = "benches/validate_chain.rs"
harness = false
[dependencies.clap]
version = "4.5.48"
features = ["derive"]
[dependencies.openmw-config]
version = "1.0.2"
[dependencies.vfstool_lib]
version = "0.9"
features = [
"serialize",
"beth-archives",
]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.dream_archive]
version = "0.1.6"
features = ["bsa"]
default-features = false