First commit: check status without sending email
[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 reqwest = { version = "0.11", features = [
11     "blocking",
12     "json",
13 ], default-features = false }
14 anyhow = "1.0"
15 itertools = "0.11"
16 serde = { version = "1.0", features = ["derive"] }
17 serde_json = "1.0"
18 ron = "0.8" # Rust object notation, to load configuration files.
19
20 [profile.release]
21 codegen-units = 1
22 lto = true
23 panic = 'abort'