caveman/hunter/Cargo.toml

23 lines
573 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.12", features = ["json", "deflate", "gzip", "trust-dns"] }
2022-11-02 21:12:16 +01:00
serde = { version = "1", features = ["derive"] }
2022-11-02 22:42:43 +01:00
chrono = "0.4"
2022-12-01 01:39:38 +01:00
tracing = "0.1"
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"
serde_json = "1"
2023-08-08 18:42:34 +02:00
urlencoding = "1"
2023-10-01 23:31:17 +02:00
mimalloc = { version = "*", default-features = false }