exarch-cli 0.1.1

Command-line utility for secure archive extraction and creation
[[bin]]
name = "exarch"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive", "cargo", "wrap_help", "color"]
version = "4.5"

[dependencies.clap_complete]
version = "4.5"

[dependencies.console]
version = "0.16"

[dependencies.exarch-core]
version = "0.1.1"

[dependencies.indicatif]
features = ["improved_unicode"]
version = "0.17"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dev-dependencies.assert_cmd]
version = "2.1"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.24"

[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"

[package]
authors = ["Exarch Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compression", "filesystem"]
description = "Command-line utility for secure archive extraction and creation"
edition = "2024"
homepage = "https://github.com/bug-ops/exarch"
keywords = ["archive", "extraction", "security", "tar", "zip"]
license = "MIT OR Apache-2.0"
name = "exarch-cli"
readme = "README.md"
repository = "https://github.com/bug-ops/exarch"
resolver = "2"
rust-version = "1.89.0"
version = "0.1.1"

[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"