[package]
edition = "2024"
rust-version = "1.94"
name = "ironflow-ops-docker"
version = "0.1.2"
authors = ["Thomas Tartrau"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Docker operations for Ironflow workflows, powered by bollard"
readme = "README.md"
keywords = [
"workflow",
"docker",
"operations",
"ironflow",
]
categories = [
"asynchronous",
"development-tools",
]
license = "MIT"
repository = "https://gitlab.com/ThomasTartrau/ironflow"
resolver = "2"
[lib]
name = "ironflow_ops_docker"
path = "src/lib.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "containers"
path = "tests/containers.rs"
[[test]]
name = "images"
path = "tests/images.rs"
[[test]]
name = "networks"
path = "tests/networks.rs"
[[test]]
name = "system"
path = "tests/system.rs"
[[test]]
name = "volumes"
path = "tests/volumes.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bollard]
version = "0.20"
[dependencies.ironflow-core]
version = "3.15.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["rt"]
[dependencies.tokio-stream]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]