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

31 lines
692 B
TOML
Raw Normal View History

2023-11-27 14:20:47 +01:00
[workspace]
resolver = "2"
2023-12-07 23:34:39 +01:00
members = ["hook-common", "hook-producer", "hook-consumer"]
2023-11-27 14:20:47 +01:00
[workspace.dependencies]
chrono = { version = "0.4" }
serde = { version = "1.0" }
serde_derive = { version = "1.0" }
2023-12-07 23:34:39 +01:00
serde_json = { version = "1.0" }
thiserror = { version = "1.0" }
2023-12-07 23:34:39 +01:00
sqlx = { version = "0.7", features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"uuid",
"json",
"chrono",
] }
2023-11-27 16:13:04 +01:00
tokio = { version = "1.34.0", features = ["full"] }
eyre = "0.6.9"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
2023-12-04 16:08:00 +01:00
envconfig = "0.10.0"
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.1"
2023-12-07 23:34:39 +01:00
http = { version = "0.2" }
url = { version = "2.5.0 " }
tower = "0.4.13"
http-body-util = "0.1.0"