slotgate 0.1.0

A bounded-parallelism job runner that gives each slot its own disjoint port range, so port-binding tests run in parallel without collisions.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "slotgate"
version = "0.1.0"
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",
]