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

24 lines
626 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-18 21:31:50 +01:00
reqwest = { version = "0.11", features = ["json", "stream"] }
2022-12-11 01:07:39 +01:00
sigh = { path = "../rust-sigh" }
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"