[package]
edition = "2024"
rust-version = "1.95"
name = "podbox-cli"
version = "0.6.5"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative Podman-native container environment manager. Define an environment as a TOML file and let systemd own its lifecycle."
homepage = "https://github.com/bethropolis/podbox"
documentation = "https://docs.rs/podbox-cli"
readme = "README.md"
keywords = [
"container",
"podman",
"systemd",
"quadlet",
"devcontainer",
]
categories = [
"command-line-utilities",
"virtualization",
]
license = "MIT"
repository = "https://github.com/bethropolis/podbox"
[lib]
name = "podbox"
path = "src/lib.rs"
[[bin]]
name = "podbox"
path = "src/main.rs"
[[test]]
name = "codegen_tests"
path = "tests/codegen_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "dry_run"
path = "tests/dry_run.rs"
[[test]]
name = "prebuilt_tests"
path = "tests/prebuilt_tests.rs"
[[test]]
name = "socket_protocol"
path = "tests/socket_protocol.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.dialoguer]
version = "0.11"
features = ["fuzzy-select"]
[dependencies.dirs]
version = "5.0"
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2.14"
[dependencies.nix]
version = "0.31.3"
features = [
"process",
"signal",
"fs",
"poll",
"user",
"socket",
"uio",
]
[dependencies.notify-rust]
version = "4.0"
[dependencies.owo-colors]
version = "4.3.0"
features = ["supports-colors"]
[dependencies.podbox-protocol]
version = "0.6.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1.1.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-journald]
version = "0.3.2"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"fmt",
"registry",
]
[dependencies.url]
version = "2.5"
[dependencies.which]
version = "6.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.insta]
version = "1.48"
features = ["json"]
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.27"
[lints.clippy]
assigning_clones = "allow"
collapsible_if = "allow"
doc_markdown = "allow"
elidable_lifetime_names = "allow"
fn_params_excessive_bools = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
manual_string_new = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
redundant_closure_for_method_calls = "allow"
redundant_guards = "allow"
ref_option = "allow"
semicolon_if_nothing_returned = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
uninlined_format_args = "allow"
unnecessary_trailing_comma = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
used_underscore_binding = "allow"
wildcard_in_or_patterns = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "allow"