mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
26 lines
738 B
TOML
26 lines
738 B
TOML
[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 }
|
|
axum = { workspace = true, features = ["http2"] }
|
|
chrono = { workspace = true }
|
|
http = { workspace = true }
|
|
metrics = { workspace = true }
|
|
metrics-exporter-prometheus = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_derive = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true } # We need a runtime for async tests
|