0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/rust/hook-common/Cargo.toml

28 lines
689 B
TOML
Raw Normal View History

2023-11-27 14:20:47 +01:00
[package]
name = "hook-common"
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]
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