[[bin]]
name = "esp_extractor"
path = "src/main.rs"
required-features = ["cli"]
[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]
features = ["derive"]
optional = true
version = "4.0"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.flate2]
version = "1.0"
[dependencies.memmap2]
version = "0.9"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.0"
[[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"
[features]
cli = ["clap"]
default = ["cli"]
[lib]
crate-type = ["lib"]
name = "esp_extractor"
path = "src/lib.rs"
[package]
authors = ["Orcax-1399"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["games", "parsing", "internationalization"]
description = "A Rust library for extracting and applying translations to Bethesda ESP/ESM/ESL files"
edition = "2021"
homepage = "https://github.com/Orcax-1399/esp-string-parser"
keywords = ["bethesda", "skyrim", "fallout", "modding", "translation"]
license = "MIT OR Apache-2.0"
name = "esp_extractor"
readme = "README.md"
repository = "https://github.com/Orcax-1399/esp-string-parser"
version = "0.7.0"
[[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 = "skyrim_integration_test"
path = "tests/skyrim_integration_test.rs"