-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.06 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
[package]
name = "grey"
version = "0.1.0"
edition = "2021"
description = "A lightweight tool for checking the health of online services and reporting this to a monitoring system."
[[bin]]
name = "grey"
path = "./src/main.rs"
[dependencies]
async-trait = "0.1"
clap = { version = "4.5", features = ["derive"] }
futures = "0.3"
lazy_static = "1.5"
openssl-sys = { version = "0.9", features = ["vendored"], optional = true }
rand = "0.8"
reqwest = { version = "0.12", features = ["rustls-tls-webpki-roots"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tokio = { version = "1", features = [
"fs",
"macros",
"net",
"rt",
"time",
"tracing",
] }
tonic = { version = "0.12", features = ["tls-roots"] }
tracing-batteries = { git = "https://github.com/sierrasoftworks/tracing-batteries-rs.git" }
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }
trust-dns-resolver = { version = "0.23", features = ["tokio-runtime"] }
[features]
default = []
pure_tests = []
openssl_src = ["dep:openssl-sys"]
[profile.release]
debug = "limited"