caveman/gatherer/Cargo.toml

24 lines
603 B
TOML
Raw Normal View History

2022-11-05 20:04:31 +01:00
[package]
name = "caveman-gatherer"
version = "0.0.0"
edition = "2021"
[dependencies]
2022-11-15 00:45:02 +01:00
futures = "0.3"
2022-11-05 20:04:31 +01:00
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
chrono = "0.4"
redis = { version = "0.22", features = ["tokio-comp", "connection-manager"] }
2022-12-01 01:39:38 +01:00
tracing = "0.1"
2022-11-05 20:51:18 +01:00
cave = { path = "../cave" }
2022-11-15 00:45:02 +01:00
hyper = { version = "0.14", features = ["stream"] }
2022-11-06 01:29:58 +01:00
axum = "0.5"
axum-macros = "0.2"
2022-11-06 23:49:17 +01:00
axum-extra = { version = "0.3", features = ["spa"] }
2022-12-30 02:59:09 +01:00
http-body = "0.4"
2022-11-06 01:29:58 +01:00
askama = "0.11"
2022-12-30 02:59:09 +01:00
metrics = "0.20"
metrics-util = "0.14"
metrics-exporter-prometheus = "0.11"