# 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 = "2021" name = "wait-for-them" version = "0.5.0" authors = ["Stepan Henek "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Waits for TCP ports to be opened or for 200 status on http(s) urls" readme = "README.md" keywords = [ "cli", "wait", ] categories = ["command-line-utilities"] license = "GPL-3.0" repository = "https://github.com/shenek/wait-for-them" [lib] name = "wait_for_them" path = "src/lib.rs" doc = true [[bin]] name = "wait-for-them" path = "src/main.rs" doc = false [[test]] name = "basic" path = "tests/basic.rs" [[test]] name = "command" path = "tests/command.rs" [[test]] name = "common" path = "tests/common.rs" [dependencies.bytes] version = "1.5" optional = true [dependencies.futures] version = "0.3" [dependencies.http-body-util] version = "0.1" optional = true [dependencies.hyper] version = "1.0.1" features = [ "client", "http1", "http2", ] optional = true [dependencies.hyper-tls] version = "0.6" optional = true [dependencies.hyper-util] version = "0.1" features = [ "client-legacy", "http1", "http2", "tokio", ] [dependencies.indicatif] version = "0.17" features = ["tokio"] optional = true [dependencies.regex] version = "1" [dependencies.tokio] version = "1.34" features = [ "macros", "net", "process", "rt", "rt-multi-thread", "sync", "time", ] [dev-dependencies.assert_cmd] version = "~2.0" [features] default = [ "ui", "http", ] http = [ "hyper", "hyper-tls", "http-body-util", "bytes", ] ui = ["indicatif"]