esp_extractor 0.8.0

A Rust library for extracting and applying translations to Bethesda ESP/ESM/ESL files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "esp_extractor"
version = "0.8.0"
authors = ["Orcax-1399"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for extracting and applying translations to Bethesda ESP/ESM/ESL files"
homepage = "https://github.com/Orcax-1399/esp-string-parser"
readme = "README.md"
keywords = [
    "bethesda",
    "skyrim",
    "fallout",
    "modding",
    "translation",
]
categories = [
    "games",
    "parsing",
    "internationalization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Orcax-1399/esp-string-parser"

[features]
cli = ["clap"]
default = ["cli"]

[lib]
name = "esp_extractor"
crate-type = ["lib"]
path = "src/lib.rs"

[[bin]]
name = "esp_extractor"
path = "src/main.rs"
required-features = ["cli"]

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "check_ammo"
path = "examples/check_ammo.rs"

[[example]]
name = "check_bsa_strings"
path = "examples/check_bsa_strings.rs"

[[example]]
name = "performance_comparison"
path = "examples/performance_comparison.rs"

[[example]]
name = "test_bsa"
path = "examples/test_bsa.rs"

[[test]]
name = "bsa_fallback_test"
path = "tests/bsa_fallback_test.rs"

[[test]]
name = "debug_bsa_content"
path = "tests/debug_bsa_content.rs"

[[test]]
name = "debug_load_from_bsa"
path = "tests/debug_load_from_bsa.rs"

[[test]]
name = "fast_extract_parity_test"
path = "tests/fast_extract_parity_test.rs"

[[test]]
name = "skyrim_integration_test"
path = "tests/skyrim_integration_test.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.ba2]
version = "3"

[dependencies.bitflags]
version = "2.0"

[dependencies.byteorder]
version = "1.4"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4.0"
features = ["derive"]
optional = true

[dependencies.encoding_rs]
version = "0.8"

[dependencies.flate2]
version = "1.0"

[dependencies.memmap2]
version = "0.9"

[dependencies.rayon]
version = "1.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.0"