[package]
edition = "2024"
rust-version = "1.85"
name = "oxiarc-cli"
version = "0.3.2"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for OxiArc archive operations"
readme = "README.md"
keywords = [
"cli",
"archive",
"compression",
"zip",
"lzh",
]
categories = [
"command-line-utilities",
"compression",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiarc"
resolver = "2"
[[bin]]
name = "oxiarc"
path = "src/main.rs"
[[test]]
name = "cli_add"
path = "tests/cli_add.rs"
[[test]]
name = "cli_color"
path = "tests/cli_color.rs"
[[test]]
name = "cli_create_threshold"
path = "tests/cli_create_threshold.rs"
[[test]]
name = "cli_lenient"
path = "tests/cli_lenient.rs"
[[test]]
name = "cli_man"
path = "tests/cli_man.rs"
[[test]]
name = "cli_password"
path = "tests/cli_password.rs"
[[test]]
name = "cli_tree"
path = "tests/cli_tree.rs"
[[test]]
name = "cli_windows_names"
path = "tests/cli_windows_names.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.5"
[dependencies.clap_mangen]
version = "0.3.0"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.filetime]
version = "0.2.29"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.owo-colors]
version = "4.3.0"
[dependencies.oxiarc-archive]
version = "0.3"
[dependencies.oxiarc-core]
version = "0.3"
[dependencies.oxiarc-lzma]
version = "0.3"
[dependencies.rpassword]
version = "7.5.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.supports-color]
version = "3.0.2"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"