0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/rust/hook-janitor/Cargo.toml

30 lines
797 B
TOML
Raw Normal View History

2023-12-13 20:03:43 +01:00
[package]
name = "hook-janitor"
version = "0.1.0"
edition = "2021"
2024-04-24 17:39:18 +02:00
[lints]
workspace = true
2023-12-13 20:03:43 +01:00
[dependencies]
async-trait = { workspace = true }
axum = { workspace = true }
envconfig = { workspace = true }
eyre = { workspace = true }
futures = { workspace = true }
health = { path = "../common/health" }
2023-12-13 20:03:43 +01:00
hook-common = { path = "../hook-common" }
metrics = { workspace = true }
rdkafka = { workspace = true }
serde = { workspace = true }
2023-12-13 20:03:43 +01:00
serde_json = { workspace = true }
sqlx = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
2023-12-13 20:03:43 +01:00
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
common-metrics = { path = "../common/metrics" }
common-kafka = { path = "../common/kafka" }
common-alloc = { path = "../common/alloc" }