agepoly-events/Cargo.toml
Antoine Pelletier 52363d59ac first commit
2026-07-30 06:26:31 +02:00

32 lines
919 B
TOML

[package]
name = "events"
version = "0.1.0"
edition = "2024"
[dependencies]
aide = { version = "0.15.1", features = [
"axum-json",
"axum-query",
"http",
"macros",
"scalar",
] }
async-trait = "0.1.89"
axum = { version = "0.8.9", features = ["macros"] }
axum-extra = { version = "0.12.6", features = ["cookie-signed", "cookie-key-expansion"] }
chrono = { version = "0.4.45", features = ["serde"] }
config = "0.15.23"
schemars = { version = "0.9.0", features = ["chrono04"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sqlx = { version = "0.8.6", features = [
"postgres",
"chrono",
"json",
"runtime-tokio",
] }
thiserror = "2.0.18"
tokio = { version = "1.52.3", features = ["rt-multi-thread", "signal"] }
tower-http = { version = "0.6.10", features = ["fs"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }