aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 0289485cf47ddb0e427aaeccca4b3d526afe9deb (plain)
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
[package]
name = "statuspage"
version = "0.1.0"
edition = "2021"

[dependencies]
axum = "0.7.5"
tokio = { version = "1.37.0", features = ["full"] }
serde_yaml = "0.9.34+deprecated"
serde = { version = "1.0.200", features = ["derive"] }
anyhow = "1.0.82"
env_logger = "0.11.3"
log = "0.4.21"
futures = "0.3.30"
shlex = "1.3.0"
reqwest = { version = "0.12.4", features = [
    "rustls-tls",
    "http2",
], default-features = false }
markup = "0.15.0"
chrono = "0.4.38"
lettre = { version = "0.11.7", features = [
    "builder",
    "hostname",
    "pool",
    "rustls-tls",
    "smtp-transport",
    "tokio1-rustls-tls",
], default-features = false }