-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 1022 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
[package]
name = "aws_health_exporter"
version = "0.5.0"
authors = ["Vlad Vasiliu"]
description = "Prometheus exporter for AWS Health events."
edition = "2018"
license-file = "COPYING"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "~0.4", features = ["serde"] }
clap = { version = "~2.33", features = ["color"] }
fern = { version = "~0.6", features = ["colored"] }
lazy_static = { version = "~1.4" }
log = { version = "~0.4" }
regex = { version = "~1.4" }
rusoto_core = { version = "~0.46" }
rusoto_credential = { version = "~0.46" }
rusoto_health = { version = "~0.46" }
rusoto_signature = { version = "~0.46" }
rusoto_sts = { version = "~0.46" }
prometheus = { version = "~0.11", features = ["process"] }
tokio = { version = "~1.0", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
warp = { version = "~0.3", features = ["tls"] }
[profile.release]
lto = true
incremental = true
codegen-units = 1
panic = "abort"