[package]
edition = "2024"
rust-version = "1.89.0"
name = "exarch-cli"
version = "0.2.8"
authors = ["Exarch Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line utility for secure archive extraction and creation"
homepage = "https://github.com/bug-ops/exarch"
readme = "README.md"
keywords = [
"archive",
"extraction",
"security",
"tar",
"zip",
]
categories = [
"compression",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bug-ops/exarch"
resolver = "2"
[[bin]]
name = "exarch"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
"wrap_help",
"color",
]
[dependencies.clap_complete]
version = "4.5"
[dependencies.console]
version = "0.16"
[dependencies.exarch-core]
version = "0.2.8"
[dependencies.indicatif]
version = "0.18"
features = ["improved_unicode"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.assert_cmd]
version = "2.1"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.26"
[lints.clippy]
cast_precision_loss = "allow"
expect_used = "warn"
missing_const_for_fn = "allow"
no_effect_underscore_binding = "allow"
struct_excessive_bools = "allow"
unnecessary_literal_bound = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"