0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 11:17:50 +01:00
posthog/Cargo.toml

39 lines
1012 B
TOML
Raw Normal View History

2023-11-27 14:20:47 +01:00
[workspace]
resolver = "2"
2023-12-13 20:03:43 +01:00
members = ["hook-common", "hook-producer", "hook-consumer", "hook-janitor"]
2023-11-27 14:20:47 +01:00
[workspace.dependencies]
2023-12-13 20:03:43 +01:00
async-trait = "0.1.74"
axum = { version = "0.7.1", features = ["http2"] }
chrono = { version = "0.4" }
2023-12-13 20:03:43 +01:00
envconfig = "0.10.0"
eyre = "0.6.9"
futures = { version = "0.3.29" }
http = { version = "0.2" }
http-body-util = "0.1.0"
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.1"
rdkafka = { version = "0.35.0", features = ["cmake-build", "ssl", "tracing"] }
reqwest = { version = "0.11" }
2023-12-13 20:03:43 +01:00
regex = "1.10.2"
serde = { version = "1.0" }
serde_derive = { version = "1.0" }
2023-12-07 23:34:39 +01:00
serde_json = { version = "1.0" }
sqlx = { version = "0.7", features = [
"chrono",
"json",
"migrate",
"postgres",
2023-12-07 23:34:39 +01:00
"runtime-tokio",
"tls-native-tls",
"uuid",
] }
2023-12-13 20:03:43 +01:00
thiserror = { version = "1.0" }
2023-11-27 16:13:04 +01:00
tokio = { version = "1.34.0", features = ["full"] }
2023-12-13 20:03:43 +01:00
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2023-12-07 23:34:39 +01:00
url = { version = "2.5.0 " }
2023-12-20 23:41:25 +01:00
uuid = { version = "1.6.1", features = ["v7", "serde"] }