Skip to main content

podbox/
lib.rs

1//! `podbox` — Podman-native container environment manager.
2//!
3//! Turns a single TOML definition file into a fully integrated,
4//! systemd-managed container environment with selective XDG directory
5//! sharing, Wayland/audio passthrough, GPU acceleration, and desktop
6//! integration (`.desktop` export, binary shims).
7
8pub const VERSION: &str = env!("PODBOX_VERSION");
9
10pub mod build;
11pub mod cli;
12pub mod codegen;
13pub mod compositor;
14pub mod config;
15pub mod diff;
16pub mod editor;
17pub mod env;
18pub mod error;
19pub mod export;
20pub mod guest;
21pub mod labels;
22pub mod lock;
23pub mod podman;
24pub mod ports;
25pub mod process;
26pub mod profiles;
27pub mod protocol;
28pub mod quadlet_install;
29pub mod socket_host;
30pub mod systemd;
31pub mod wizard;
32pub mod xdg;