skyrim-cell-dump/Cargo.toml
Tyler Hallada 151ff191cc Parse strings in Windows-1252 encoding
According to UESP, this is what strings in plugin files are encoded in: https://en.uesp.net/wiki/Skyrim_Mod:File_Format_Conventions

Decoding from this encoding fixes parsing some files with zstrings that contain special characters like umlauts.
2021-07-23 23:14:08 -04:00

29 lines
789 B
TOML

[package]
name = "skyrim-cell-dump"
version = "0.2.1"
edition = "2018"
authors = ["Tyler Hallada <tyler@hallada.net>"]
description = "Library and binary for parsing Skyrim plugin files and extracting CELL data"
repository = "https://github.com/thallada/skyrim-cell-dump"
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
argh = { version = "0.1", optional = true }
bitflags = "1.2"
encoding_rs = "0.8"
flate2 = "1.0"
nom = "6"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
[features]
build-binary = ["argh", "serde_json"]
[[bin]]
name = "skyrim-cell-dump"
path = "src/bin/cli.rs"
required-features = ["build-binary"]