archon-cli 0.1.0

Cross-distro package manager (Arch/Debian/Fedora) with AUR support and a security-monitored (eBPF) build sandbox on Arch
[package]
# The crates.io name "archon" was already taken by an unrelated project
# (an Optimism batch submitter) by the time this was published, hence
# "archon-cli" here — but the installed *binary* is still plain `archon`
# (see `[[bin]]` below): Cargo lets the package name and binary name
# differ, and crates.io install instructions install a binary, not a
# package namespace, so this is invisible to end users.
name = "archon-cli"
description = "Cross-distro package manager (Arch/Debian/Fedora) with AUR support and a security-monitored (eBPF) build sandbox on Arch"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords = ["linux", "package-manager", "cross-distro", "aur", "ebpf"]
categories = ["command-line-utilities", "os"]

[[bin]]
name = "archon"
path = "src/main.rs"

[dependencies]
archon-types = { workspace = true }
archon-repo = { workspace = true }
archon-aur = { workspace = true }
archon-resolver = { workspace = true }
archon-sandbox = { workspace = true }
archon-monitor = { workspace = true }
archon-monitor-common = { workspace = true }
archon-distro = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true }
libc = { workspace = true }
env_logger = { workspace = true }
indicatif = { workspace = true }

[dev-dependencies]
tar = { workspace = true }
tempfile = { workspace = true }