Update dependencies

This commit is contained in:
Quentin Boyer 2024-12-30 21:19:19 +01:00
parent dec027f258
commit 53ec443972
18 changed files with 1342 additions and 1870 deletions

View file

@ -5,36 +5,36 @@ authors = ["traxys <quentin@familleboyer.net>"]
edition = "2021"
[workspace]
members = [".", "api", "gui", "migration", "web"]
members = [".", "api", "migration"]
[dependencies]
anyhow = "1.0.79"
axum = { version = "0.7.4" }
base64 = "0.21.7"
jwt-simple = "0.12.7"
serde = { version = "1.0.195", features = ["derive"] }
anyhow = "1.0.95"
axum = { version = "0.7.9" }
base64 = "0.22.1"
jwt-simple = "0.12.11"
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
api = { path = "./api" }
migration = { path = "./migration" }
thiserror = "1.0.56"
tower-http = { version = "0.5.1", features = ["cors", "fs"] }
thiserror = "2.0.9"
tower-http = { version = "0.6.2", features = ["cors", "fs"] }
sha2 = "0.10"
uuid = { version = "1.7", features = ["v4"] }
sea-query = "0.30"
openidconnect = "3.4.0"
uuid = { version = "1.11", features = ["v4"] }
sea-query = "0.32"
openidconnect = "3.5.0"
envious = "0.2.2"
parking_lot = "0.12.1"
parking_lot = "0.12.3"
urlencoding = "2.1.3"
tower-sessions = "0.10.0"
tower = "0.4.13"
time = "0.3.31"
tower-sessions = "0.13.0"
tower = "0.5.2"
time = "0.3.37"
maud = { version = "0.26.0", features = ["axum"] }
pulldown-cmark = "0.9.3"
ammonia = "3.3.0"
tower-sessions-sqlx-store = { version = "0.10.0", features = ["postgres"] }
pulldown-cmark = "0.12.2"
ammonia = "4.0.0"
tower-sessions-sqlx-store = { version = "0.14.2", features = ["postgres"] }
[dependencies.sea-orm]
version = "0.12"
version = "1.1"
features = ["runtime-tokio-rustls", "sqlx-postgres", "sqlx-sqlite"]