calendar/Cargo.toml
pavel 6f55ad839c
All checks were successful
/ upload (release) Successful in 1m3s
idk
2026-02-16 23:58:08 +01:00

26 lines
969 B
TOML

[package]
name = "calendar"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8.8", features = ["macros"] }
dotenvy = "0.15.7"
sea-orm = { version = "1.1.19", features = ["runtime-tokio-rustls", "sqlx-postgres"] }
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", features = ["full"] }
tower-http = { version = "0.6.8", features = ["full"] }
uuid = { version = "1.12.1", features = ["v4"] }
urlencoding = "2.1.3"
async-trait = "0.1.86"
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
migration = { path = "migration" }
chrono = { version = "0.4.43", features = ["serde"] }
openidconnect = { version = "4.0.0", features = ["reqwest"] }
jsonwebtoken = "9.3.1"
anyhow = "1.0.95"
reqwest = { version = "0.12.12", features = ["json", "rustls-tls"] }
serde_json = "1.0.138"
utoipa = { version = "5.4.0", features = ["axum_extras", "chrono", "macros"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }