diff options
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" |