diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-01 21:47:18 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-01 21:47:18 +0200 |
commit | 243a9eabe185661fa7c35fec59482c215fc8dc4f (patch) | |
tree | 379f48f070a5c0961df82b628b2be7203bbee2c4 /Cargo.toml | |
parent | 4c9c8de0c9f1f03f44ae60c088f506c1e4a51d26 (diff) | |
download | statuspage-243a9eabe185661fa7c35fec59482c215fc8dc4f.tar statuspage-243a9eabe185661fa7c35fec59482c215fc8dc4f.tar.bz2 statuspage-243a9eabe185661fa7c35fec59482c215fc8dc4f.tar.zst |
add simple api
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -5,15 +5,16 @@ edition = "2021" [dependencies] axum = "0.7.5" -tokio = { version = "1.37.0", features = ["full"] } +tokio = { version = "1.39.3", 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" +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.4", features = [ +reqwest = { version = "0.12.7", features = [ "rustls-tls", "http2", ], default-features = false } |