This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
buzzrelay/Cargo.toml

31 lines
759 B
TOML
Raw Normal View History

2022-12-11 01:07:39 +01:00
[package]
name = "buzzrelay"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.6"
axum-macros = "0.3"
axum-extra = { version = "0.4", features = ["spa"] }
askama = "0.11"
2022-12-18 21:31:50 +01:00
tokio = { version = "1", features = ["full", "time"] }
2022-12-11 01:07:39 +01:00
tracing = "*"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = "1"
serde_json = "1"
2022-12-19 21:20:13 +01:00
serde_yaml = "0.9"
2022-12-18 21:31:50 +01:00
reqwest = { version = "0.11", features = ["json", "stream"] }
2022-12-19 21:20:13 +01:00
sigh = "1.0"
2022-12-11 01:07:39 +01:00
http_digest_headers = { version="0.1.0", default-features = false, features = ["use_openssl"] }
thiserror = "1"
http = "0.2"
chrono = "0.4"
2022-12-18 21:31:50 +01:00
eventsource-stream = "0.2"
futures = "0.3"
2022-12-19 21:20:13 +01:00
tokio-postgres = "0.7"
2022-12-20 00:19:21 +01:00
systemd = "0.10"
2022-12-20 03:13:44 +01:00
metrics = "0.20"
metrics-util = "0.14"
metrics-exporter-prometheus = "0.11"
deunicode = "1.3"