commit
9ae6d88c21
24 changed files with 7589 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue