caveman/butcher/Cargo.toml

21 lines
536 B
TOML
Raw Normal View History

2023-01-22 00:05:10 +01:00
[package]
name = "caveman-butcher"
version = "0.0.0"
edition = "2021"
[dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full", "tracing"] }
reqwest = { version = "0.11", features = ["json", "deflate", "gzip", "trust-dns"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
tracing = "0.1"
cave = { path = "../cave" }
rand = "0.8"
texting_robots = "0.2"
metrics = "0.20"
metrics-util = "0.14"
metrics-exporter-prometheus = "0.11"
2023-10-02 00:00:52 +02:00
mimalloc = { version = "*", default-features = false }