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

35 lines
896 B
TOML
Raw Permalink Normal View History

2023-11-27 14:20:47 +01:00
[package]
name = "hook-worker"
2023-11-27 14:20:47 +01:00
version = "0.1.0"
edition = "2021"
2024-04-24 17:39:18 +02:00
[lints]
workspace = true
2023-11-27 14:20:47 +01:00
[dependencies]
axum = { workspace = true }
2023-12-08 16:31:06 +01:00
chrono = { workspace = true }
envconfig = { workspace = true }
2023-12-06 13:55:21 +01:00
futures = "0.3"
health = { path = "../common/health" }
2023-12-06 13:55:21 +01:00
hook-common = { path = "../hook-common" }
2024-04-15 16:20:52 +02:00
http = { workspace = true }
metrics = { workspace = true }
rdkafka = { workspace = true }
reqwest = { workspace = true }
serde_json = { workspace = true }
2023-12-08 16:31:06 +01:00
sqlx = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
2024-01-10 17:39:01 +01:00
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
2023-12-06 13:55:21 +01:00
url = { version = "2.2" }
common-metrics = { path = "../common/metrics" }
common-dns = { path = "../common/dns" }
common-kafka = { path = "../common/kafka" }
common-alloc = { path = "../common/alloc" }
[dev-dependencies]
httpmock = { workspace = true }