-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 742 Bytes
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
[package]
name = "cmdprobe"
version = "0.1.1"
edition = "2024"
license = "MIT"
description = "A tool for executing checks and validating their outputs"
authors = ["Vasilios Syrakis <vsyrakis@protonmail.com>"]
readme = "README.md"
repository = "https://github.com/cetanu/cmdprobe"
keywords = ["check", "healthcheck"]
[dependencies]
# Logs
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["json", "env-filter"]}
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
# Parsing
jmespath = "0.3"
regex = "1.5"
# Errors
anyhow = "1.0"
# CLI
clap = {version = "4.3", features = ["derive", "env"]}
# Metrics
cadence = "0.29"
# Parallelism
rayon = "1.7"
# HTTP
ureq = "2.7"