-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (27 loc) · 1.08 KB
/
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
[package]
name = "statuspage-exporter"
version = "0.4.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7", default_features = false, features = ["http1", "query", "tokio"] }
anyhow = { version = "1", features = ["backtrace"] }
chrono = { version = "^0.4", features = ["serde"] }
lazy_static = "1"
percent-encoding = "2"
url = { version = "2", features = ["serde"] }
prometheus = { version = "^0.13", features = ["process"] }
reqwest = { version = "^0.11", default_features = false, features = ["gzip", "json", "rustls-tls"] }
serde = { version = "~1", features = ["derive"] }
serde_json = "~1"
strum = { version = "^0.26", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros", "parking_lot"] }
tracing = "^0.1"
tracing-error = { version = "^0.2", features = ["traced-error"] }
tracing-subscriber = { version = "^0.3", features = ["env-filter", "json", "parking_lot", "smallvec"] }
[profile.release]
lto = true
incremental = false
codegen-units = 1
panic = "abort"
strip = true