[package]
edition = "2024"
rust-version = "1.85"
name = "slotgate"
version = "0.4.2"
authors = ["Umberto Gotti"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bounded-parallelism job runner that gives each slot its own disjoint port range, so port-binding tests run in parallel without collisions."
readme = "README.md"
keywords = [
"testing",
"parallel",
"ports",
"ci",
]
categories = [
"development-tools::testing",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/umbgtt10/slotgate"
[lib]
name = "slotgate"
path = "src/lib.rs"
[[bin]]
name = "slotgate"
path = "src/main.rs"
[[test]]
name = "all_tests"
path = "tests/all_tests.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt-multi-thread",
"time",
"process",
"fs",
"sync",
"io-util",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]