init
All checks were successful
/ upload (release) Successful in 1m54s

This commit is contained in:
pavel 2026-02-15 23:16:26 +01:00
commit 9ae6d88c21
24 changed files with 7589 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[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"