//! Podman libpod REST API client and types.
//!
//! Talks to Podman's native libpod API at `/libpod/...` instead of the
//! Docker-compatibility layer. Eliminates the Docker compat intermediary,
//! gives access to Podman-native error messages, and removes the bollard
//! dependency.
/// Path prefix for every libpod REST route.
///
/// Podman's libpod routes are version-namespaced: an unversioned path such as
/// `/libpod/containers/json` is not guaranteed to resolve, so every request
/// must carry the API version. `v5.0.0` is the current published libpod API
/// version this client targets; podup requires Podman >= 5.0. Podman keeps the
/// route surface backward-compatible within a major version. The
/// version-independent `/libpod/_ping` endpoint is the sole exception and
/// deliberately omits this prefix.
pub const API_PREFIX: &str = "/v5.0.0/libpod";
pub use urlencoded;
pub use Client;
pub use PodmanError;
pub use ;