0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/hook-common/Cargo.toml

27 lines
761 B
TOML
Raw Normal View History

2023-11-27 14:20:47 +01:00
[package]
name = "hook-common"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = { workspace = true }
2023-12-13 20:03:43 +01:00
axum = { workspace = true, features = ["http2"] }
2023-12-07 23:34:39 +01:00
chrono = { workspace = true }
http = { workspace = true }
2023-12-13 20:03:43 +01:00
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sqlx = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
2023-11-29 18:52:12 +01:00
[dev-dependencies]
tokio = { workspace = true } # We need a runtime for async tests