buzzrelay/Cargo.toml

35 lines
999 B
TOML
Raw Normal View History

2022-12-11 00:07:39 +00:00
[package]
name = "buzzrelay"
version = "0.1.0"
edition = "2021"
2023-05-05 19:47:21 +00:00
repository = "https://github.com/astro/buzzrelay"
homepage = "https://relay.fedi.buzz"
2022-12-11 00:07:39 +00:00
[dependencies]
axum = "0.7"
tower-http = { version = "0.5", features = ["fs"] }
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 = { version = "1", features = ["derive"] }
2022-12-11 00:07:39 +00:00
serde_json = "1"
2022-12-19 20:20:13 +00:00
serde_yaml = "0.9"
reqwest = { version = "0.12", features = ["json", "stream", "hickory-dns", "rustls-tls"] }
2022-12-19 20:20:13 +00:00
sigh = "1.0"
2023-10-12 20:09:09 +00:00
http_digest_headers = { version = "0.1.0", default-features = false, features = ["use_openssl"] }
2022-12-11 00:07:39 +00:00
thiserror = "1"
http = "1"
2022-12-11 00:07:39 +00:00
chrono = "0.4"
2022-12-18 20:31:50 +00:00
eventsource-stream = "0.2"
futures = "0.3"
2022-12-19 20:20:13 +00:00
tokio-postgres = "0.7"
2022-12-19 23:19:21 +00:00
systemd = "0.10"
2023-06-16 17:20:31 +00:00
metrics = "0.21"
metrics-util = "0.15"
metrics-exporter-prometheus = "0.12"
2024-03-27 01:23:28 +00:00
deunicode = "1.4"
urlencoding = "2"
httpdate = "1"
2023-10-12 20:09:09 +00:00
redis = { version = "0.23", features = ["tokio-comp", "connection-manager"] }
lru = "0.12"