caveman/hunter/Cargo.toml

26 lines
679 B
TOML
Raw Normal View History

2022-11-02 21:12:16 +01:00
[package]
2022-11-03 19:49:00 +01:00
name = "caveman-hunter"
2022-11-02 21:12:16 +01:00
version = "0.0.0"
edition = "2021"
[dependencies]
futures = "0.3"
2022-12-01 01:39:38 +01:00
tokio = { version = "1", features = ["full", "tracing"] }
2023-04-24 19:35:19 +02:00
tokio-uring = "0.4"
reqwest = { version = "0.11", features = ["json", "deflate", "gzip", "trust-dns"] }
2022-11-02 21:12:16 +01:00
serde = { version = "1", features = ["derive"] }
# serde_yaml = "0.9"
2022-11-02 22:42:43 +01:00
chrono = "0.4"
# redis = { version = "0.22", features = ["tokio-comp", "connection-manager"] }
2022-12-01 01:39:38 +01:00
tracing = "0.1"
# systemd = "0.10"
2022-11-05 20:51:18 +01:00
cave = { path = "../cave" }
rand = "0.8"
texting_robots = "0.2"
2022-12-26 03:44:42 +01:00
metrics = "0.20"
metrics-util = "0.14"
metrics-exporter-prometheus = "0.11"
2022-12-03 01:47:44 +01:00
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5"