-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (33 loc) · 1.12 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
38
39
40
41
42
[package]
name = "wait-service"
version = "0.3.1"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
rust-version = "1.70"
repository = "https://github.com/magiclen/wait-service"
homepage = "https://magiclen.org/wait-service"
keywords = ["wait-for-it", "tcp", "unix", "socket", "uds"]
categories = ["command-line-utilities"]
description = "Wait Service is a pure rust program to test and wait on the availability of multiple services."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dependencies]
clap = { version = "4", features = ["derive"] }
concat-with = "0.2"
terminal_size = "0.3"
anyhow = "1"
once_cell = "1.9"
tokio = { version = "1.12", features = ["rt", "time", "net", "sync", "macros"] }
dnsclient = { version = "0.1.16", default-features = false, features = ["async-tokio"] }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
[dependencies.path-absolutize]
version = "3"
features = ["once_cell_cache"]
[features]
json = ["serde", "serde_json"]