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]
|
2023-12-20 15:25:56 +01:00
|
|
|
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 }
|
2023-12-18 12:08:08 +01:00
|
|
|
reqwest = { workspace = true }
|
2023-12-04 15:51:19 +01:00
|
|
|
serde = { workspace = true }
|
2023-12-14 21:13:30 +01:00
|
|
|
serde_json = { workspace = true }
|
2023-12-04 15:51:19 +01:00
|
|
|
sqlx = { workspace = true }
|
2024-04-24 17:30:11 +02:00
|
|
|
thiserror = { workspace = true }
|
2024-01-16 18:50:43 +01:00
|
|
|
time = { workspace = true }
|
2023-12-21 15:15:59 +01:00
|
|
|
tokio = { workspace = true }
|
2024-01-16 18:50:43 +01:00
|
|
|
tracing = { workspace = true }
|
2023-12-14 21:13:30 +01:00
|
|
|
uuid = { workspace = true }
|
2023-11-29 18:52:12 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-04 15:51:19 +01:00
|
|
|
tokio = { workspace = true } # We need a runtime for async tests
|