[package]
edition = "2021"
name = "podtender"
version = "0.5.0"
authors = ["Julian Schindel <mail@arctic-alpaca.de>"]
description = """
A rust client for the podman API.
"""
readme = "README.md"
keywords = [
"podman",
"containers",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PEASEC/podtender"
[lib]
name = "podtender"
path = "src/lib.rs"
[[test]]
name = "containers-test"
path = "tests/containers.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "images-test"
path = "tests/images.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "networks-test"
path = "tests/networks.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "pod_prune-test"
path = "tests/pod_prune.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "pods-test"
path = "tests/pods.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "system-test"
path = "tests/system.rs"
required-features = [
"examples",
"tracing",
]
[[test]]
name = "volumes-test"
path = "tests/volumes.rs"
required-features = [
"examples",
"tracing",
]
[dependencies.asynchronous-codec]
version = "0.6.0"
features = ["json"]
[dependencies.derive_builder]
version = "0.12.0"
optional = true
[dependencies.futures]
version = "0.3.21"
[dependencies.hyper]
version = "0.14.18"
features = [
"server",
"client",
"http1",
"runtime",
"stream",
]
[dependencies.hyperlocal]
version = "0.8.0"
features = ["client"]
[dependencies.serde]
version = "1.0.137"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.81"
[dependencies.serde_path_to_error]
version = "0.1.7"
[dependencies.serde_qs]
version = "0.12.0"
[dependencies.serde_with]
version = "2.0.0"
features = [
"json",
"macros",
]
[dependencies.thiserror]
version = "1.0.31"
[dependencies.tracing]
version = "0.1.34"
optional = true
[dev-dependencies.lazy_static]
version = "1.4.0"
[dev-dependencies.serial_test]
version = "2.0.0"
[dev-dependencies.tokio]
version = "1.18.1"
features = [
"rt-multi-thread",
"net",
"macros",
"io-std",
"io-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.11"
features = [
"env-filter",
"registry",
]
[features]
builder = ["dep:derive_builder"]
examples = []
tracing = ["dep:tracing"]