diff options
author | metamuffin <metamuffin@disroot.org> | 2024-05-03 19:34:45 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-05-03 19:34:45 +0200 |
commit | d60bedc20dc0cc54cb697f3a45e5b222de6f1479 (patch) | |
tree | be310b8ca7075cef3676d4b05ac99f9267692b95 /Cargo.toml | |
download | statuspage-d60bedc20dc0cc54cb697f3a45e5b222de6f1479.tar statuspage-d60bedc20dc0cc54cb697f3a45e5b222de6f1479.tar.bz2 statuspage-d60bedc20dc0cc54cb697f3a45e5b222de6f1479.tar.zst |
works
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..aeffe1b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[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 = "0.12.4" +markup = "0.15.0" |