Rust interface to Podman
Add the following to your Cargo.toml
file
toml
[dependencies]
podman-api = "0.3"
To enable HTTPS connection to podman add a tls
flag to Cargo.toml
.
By default, only chrono
feature is enabled. To disable it use:
toml
podman-api = { version = "0.3", default-features = false }
Examples for most API endpoints can be found in the library documentation.