wait-service 0.4.0

Wait Service is a pure rust program to test and wait on the availability of multiple services.
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 = "wait-service"
version = "0.4.0"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "Cargo.lock",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wait Service is a pure rust program to test and wait on the availability of multiple services."
homepage = "https://magiclen.org/wait-service"
readme = "README.md"
keywords = [
    "wait-for-it",
    "tcp",
    "unix",
    "socket",
    "uds",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/magiclen/wait-service"

[features]
json = [
    "dep:serde",
    "dep:serde_json",
    "tokio/fs",
]

[lib]
name = "wait_service"
path = "src/lib.rs"

[[bin]]
name = "wait-service"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.46"

[dependencies.clap]
version = "4.0.17"
features = ["derive"]

[dependencies.concat-with]
version = "0.2"

[dependencies.dnsclient]
version = "0.2"
features = ["async-tokio"]
default-features = false

[dependencies.path-absolutize]
version = "4"
features = ["fixed_workdir"]

[dependencies.serde]
version = "1.0.113"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.terminal_size]
version = "0.4"

[dependencies.tokio]
version = "1.45"
features = [
    "rt",
    "time",
    "net",
    "macros",
]

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true