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

62 lines
1.4 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = [
"capture",
"capture-server",
"common/health",
"hook-api",
"hook-common",
"hook-janitor",
"hook-worker",
]
2023-04-18 12:23:49 +02:00
[workspace.dependencies]
anyhow = "1.0"
assert-json-diff = "2.0.2"
2023-12-13 20:03:43 +01:00
async-trait = "0.1.74"
axum = { version = "0.7.5", features = ["http2", "macros", "matched-path"] }
2024-04-15 16:20:52 +02:00
axum-client-ip = "0.6.0"
base64 = "0.22.0"
bytes = "1"
chrono = { version = "0.4" }
2023-12-13 20:03:43 +01:00
envconfig = "0.10.0"
eyre = "0.6.9"
flate2 = "1.0"
2023-12-13 20:03:43 +01:00
futures = { version = "0.3.29" }
governor = { version = "0.5.1", features = ["dashmap"] }
2024-04-15 16:20:52 +02:00
http = { version = "1.1.0" }
2023-12-13 20:03:43 +01:00
http-body-util = "0.1.0"
metrics = "0.22.0"
2024-04-15 16:20:52 +02:00
metrics-exporter-prometheus = "0.14.0"
rand = "0.8.5"
rdkafka = { version = "0.36.0", features = ["cmake-build", "ssl", "tracing"] }
2024-04-15 16:20:52 +02:00
reqwest = { version = "0.12.3" }
serde = { version = "1.0", features = ["derive"] }
serde_derive = { version = "1.0" }
2023-12-07 23:34:39 +01:00
serde_json = { version = "1.0" }
serde_urlencoded = "0.7.1"
2023-12-07 23:34:39 +01:00
sqlx = { version = "0.7", features = [
"chrono",
"json",
"migrate",
"postgres",
2023-12-07 23:34:39 +01:00
"runtime-tokio",
"tls-native-tls",
"uuid",
] }
time = { version = "0.3.20", features = [
"formatting",
"macros",
"parsing",
"serde",
] }
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"
2024-04-15 16:20:52 +02:00
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
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"] }