-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "wait-for-them"
version = "0.4.0"
authors = ["Stepan Henek <stepan@henek.name>"]
edition = "2021"
description = "Waits for TCP ports to be opened or for 200 status on http(s) urls"
license = "GPL-3.0"
readme = "README.md"
keywords = ["cli", "wait"]
repository = "https://github.com/shenek/wait-for-them"
categories = ["command-line-utilities"]
[features]
default = ["ui", "http"]
ui = ["indicatif"]
http = ["hyper", "hyper-rustls"]
[dependencies]
futures = "0.3"
indicatif = {version="0.17", features=["tokio"], optional=true}
hyper = {version="0.14", features=["client", "http1", "http2"], optional=true}
hyper-rustls = {version="0.23", default-features=false, features=["native-tokio", "http1", "http2", "tls12"], optional=true}
regex = "1"
tokio = {version="1.25", features=["macros", "net", "process", "rt", "rt-multi-thread", "sync", "time"]}
[dev-dependencies]
assert_cmd = "~2.0"
[lib]
name = "wait_for_them"
path = "src/lib.rs"
doc = true
[[bin]]
name = "wait-for-them"
path = "src/main.rs"
doc = false