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

[dependencies]
axum = "0.7.5"
tokio = { version = "1.39.3", features = ["full"] }
serde_yaml = "0.9.34+deprecated"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
anyhow = "1.0.86"
env_logger = "0.11.5"
log = "0.4.22"
futures = "0.3.30"
shlex = "1.3.0"
reqwest = { version = "0.12.7", 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 }