aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 0816ec34e8e2cfeed417e037a41f261ae4fd256f (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
31
32
[package]
name = "statuspage"
version = "0.1.1"
edition = "2021"

[dependencies]
axum = "0.8.3"
tokio = { version = "1.44.1", features = ["full"] }
serde_yml = "0.0.12"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
anyhow = "1.0.97"
env_logger = "0.11.7"
log = "0.4.27"
futures = "0.3.31"
shlex = "1.3.0"
reqwest = { version = "0.12.15", features = [
    "rustls-tls",
    "http2",
], default-features = false }
markup = "0.15.0"
chrono = "0.4.40"
lettre = { version = "0.11.15", features = [
    "builder",
    "hostname",
    "pool",
    "rustls-tls",
    "smtp-transport",
    "tokio1-rustls-tls",
], default-features = false }
users = "0"
zbus = "5"