[package]
name = "zar-cli"
version.workspace = true
edition = "2021"
license.workspace = true
homepage = "https://github.com/igankevich/zar"
repository = "https://github.com/igankevich/zar"
documentation = "https://docs.rs/zar-cli"
readme = "../README.md"
description = "A command-line utility for reading and writing MacOS signed XAR archives."
keywords = ["xar", "pkg", "apple", "sign"]
categories = ["encoding", "filesystem", "command-line-utilities"]
include = ["**/*.rs", "Cargo.toml", "../README.md", "LICENSE"]
[[bin]]
name = "zar"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.54", features = ["derive"] }
libc = "0.2.180"
x509-cert = "0.2.5"
zar.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
caps = "0.5.5"
[target.'cfg(not(target_os = "linux"))'.dependencies]
libc = "0.2.180"
[dev-dependencies]
arbitrary = { version = "1.4.2", features = ["derive"] }
arbtest = "0.3.2"
random-dir = "0.2.4"
similar-asserts = "1.7.0"
tempfile = "3.24.0"
test_bin = "0.5.0"