[package]
edition = "2024"
name = "iroga"
version = "0.4.0"
authors = ["Tangtang Zhou <tangtang2995@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line app to pack a single directory into an IRO archive (FF7 mod manager format)"
readme = "README.md"
keywords = [
"cli",
"iro",
"archive",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/tangtang95/iroga"
[lib]
name = "iroga"
path = "src/lib.rs"
[[bin]]
name = "iroga"
path = "src/main.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.clap]
version = "4.5.32"
features = ["derive"]
[dependencies.fast-glob]
version = "0.4.5"
[dependencies.lzma-rs]
version = "0.3.0"
[dependencies.lzs]
version = "0.1.1"
features = ["std"]
default-features = false
[dependencies.nom]
version = "8.0.0"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.assert_cmd]
version = "2.0.16"
[dev-dependencies.assert_fs]
version = "1.1.2"
[dev-dependencies.hex-literal]
version = "1.0.0"
[dev-dependencies.predicates]
version = "3.1.3"