-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (39 loc) · 985 Bytes
/
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
43
44
45
46
47
[package]
edition = "2021"
name = "ecg"
version = "1.0.3"
authors = ["Etienne Napoleone <etienne@setten.io>"]
categories = ["command-line-utilities"]
description = "Cosmos validators dead man's switch"
documentation = "https://github.com/setten-io/ecg/blob/main/README.md"
keywords = ["monitoring", "validator", "cosmos", "heartbeat", "uptime"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/setten-io/ecg"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
futures = "0.3"
log = "0.4"
pretty_env_logger = "0.4"
serde-aux = "3.0"
serde_yaml = "0.9"
thiserror = "1.0"
[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
version = "0.11"
[dependencies.tokio]
features = ["full"]
version = "1"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.clap]
features = ["derive", "env"]
version = "3.2"
[dependencies.ctrlc]
features = ["termination"]
version = "3.2"
[dev-dependencies]
indoc = "1.0"