Send an email after a certain amount of error
[stakingWatchdog.git] / Cargo.toml
1 [package]
2 name = "staking_watchdog"
3 version = "0.1.0"
4 authors = ["Greg Burri <greg.burri@gmail.com>"]
5 edition = "2021"
6
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9 [dependencies]
10 anyhow = "1.0"
11 itertools = "0.11"
12
13 reqwest = { version = "0.11", features = [
14     "blocking",
15     "json",
16 ], default-features = false }
17
18 lettre = { version = "0.10", features = [
19     "rustls-tls",
20     "smtp-transport",
21     "builder",
22 ], default-features = false }
23
24 serde = { version = "1.0", features = ["derive"] }
25 serde_json = "1.0"
26 ron = "0.8"                                        # Rust object notation, to load configuration files.
27
28
29 [profile.release]
30 codegen-units = 1
31 lto = true
32 panic = 'abort'