buzzrelay/Cargo.toml

24 lines
626 B
TOML
Raw Normal View History

2022-12-11 00:07:39 +00: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 20:31:50 +00:00
tokio = { version = "1", features = ["full", "time"] }
2022-12-11 00:07:39 +00:00
tracing = "*"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = "1"
serde_json = "1"
2022-12-18 20:31:50 +00:00
reqwest = { version = "0.11", features = ["json", "stream"] }
2022-12-11 00:07:39 +00: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 20:31:50 +00:00
eventsource-stream = "0.2"
futures = "0.3"