2021-05-20 05:33:11 +00:00
|
|
|
[package]
|
2021-05-21 00:47:50 +00:00
|
|
|
name = "skyrim-cell-dump"
|
2022-03-03 06:06:08 +00:00
|
|
|
version = "0.3.2"
|
2021-05-20 05:33:11 +00:00
|
|
|
edition = "2018"
|
2021-05-21 00:47:50 +00:00
|
|
|
authors = ["Tyler Hallada <tyler@hallada.net>"]
|
2021-05-21 02:21:27 +00:00
|
|
|
description = "Library and binary for parsing Skyrim plugin files and extracting CELL data"
|
2021-05-21 00:47:50 +00:00
|
|
|
repository = "https://github.com/thallada/skyrim-cell-dump"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2021-05-20 05:33:11 +00:00
|
|
|
|
|
|
|
# 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"
|
2021-07-24 03:14:08 +00:00
|
|
|
encoding_rs = "0.8"
|
2021-05-20 05:33:11 +00:00
|
|
|
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"]
|