Remove two useless comments.
[stakingWatchdogWatchdog.git] / Cargo.toml
1 [package]
2 name = "staking_watchdog_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 rand = "0.8"
13
14 lettre = { version = "0.10", features = [
15     "rustls-tls",
16     "smtp-transport",
17     "builder",
18 ], default-features = false }
19
20 serde = { version = "1.0", features = ["derive"] }
21 serde_json = "1.0"
22 ron = "0.8"                                        # Rust object notation, to load configuration files.
23
24 [profile.release]
25 codegen-units = 1
26 lto = true
27 panic = 'abort'