[package]
edition = "2024"
rust-version = "1.85"
name = "rightsize-docker"
version = "0.3.0"
authors = ["Mykyta Hriaznov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hand-rolled unix-socket Docker backend for rightsize — the correctness oracle"
readme = "README.md"
keywords = [
"testing",
"containers",
"docker",
]
categories = [
"development-tools::testing",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/ngriaznov/rightsize-rust"
resolver = "2"
[features]
sandbox-it = []
[lib]
name = "rightsize_docker"
path = "src/lib.rs"
[[test]]
name = "backend_it"
path = "tests/backend_it.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.rightsize]
version = "0.3.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"net",
"time",
"io-util",
"sync",
"process",
"macros",
]
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"net",
"time",
"io-util",
"sync",
"process",
"macros",
"rt-multi-thread",
"macros",
]