From db7421e7fa0860abb349aa05169722061233587a Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sat, 25 May 2024 19:41:01 +0000 Subject: [PATCH] fix(deps): update all dependencies --- Cargo.toml | 12 ++++++------ crates/como_api/Cargo.toml | 4 ++-- crates/como_auth/Cargo.toml | 4 ++-- crates/como_web/Cargo.toml | 10 +++++----- templates/local_up.Dockerfile | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9adbf7c..ef93966 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,18 +15,18 @@ como_api = { path = "./crates/como_api/" } como_auth = { path = "./crates/como_auth/" } async-trait = "0.1.68" -async-graphql = { version = "5.0.9", features = ["uuid"] } -async-graphql-axum = "5.0.9" +async-graphql = { version = "7.0.0", features = ["uuid"] } +async-graphql-axum = "7.0.0" -axum = { version = "0.6.18", features = ["headers", "macros"] } -axum-extra = { version = "0.7.4", features = ["cookie", "cookie-private"] } -axum-sessions = { version = "0.5.0" } +axum = { version = "0.7.0", features = ["headers", "macros"] } +axum-extra = { version = "0.9.0", features = ["cookie", "cookie-private"] } +axum-sessions = { version = "0.6.0" } async-sqlx-session = { version = "0.4.0", features = ["pg"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.68" -sqlx = { version = "0.6.2", features = [ +sqlx = { version = "0.7.0", features = [ "runtime-tokio-rustls", "postgres", "migrate", diff --git a/crates/como_api/Cargo.toml b/crates/como_api/Cargo.toml index 591a74f..c351853 100644 --- a/crates/como_api/Cargo.toml +++ b/crates/como_api/Cargo.toml @@ -27,8 +27,8 @@ anyhow.workspace = true tracing.workspace = true async-sqlx-session.workspace = true -zitadel = { version = "3.3.1", features = ["axum"] } +zitadel = { version = "4.0.0", features = ["axum"] } tower = "0.4.13" -tower-http = { version = "0.4.0", features = ["cors", "trace"] } +tower-http = { version = "0.5.0", features = ["cors", "trace"] } oauth2 = "4.4.0" openidconnect = "3.0.0" diff --git a/crates/como_auth/Cargo.toml b/crates/como_auth/Cargo.toml index e28d61b..7120d04 100644 --- a/crates/como_auth/Cargo.toml +++ b/crates/como_auth/Cargo.toml @@ -18,9 +18,9 @@ anyhow.workspace = true tracing.workspace = true async-sqlx-session.workspace = true -zitadel = { version = "3.3.1", features = ["axum"] } +zitadel = { version = "4.0.0", features = ["axum"] } tower = "0.4.13" -tower-http = { version = "0.4.0", features = ["cors", "trace"] } +tower-http = { version = "0.5.0", features = ["cors", "trace"] } oauth2 = "4.4.0" openidconnect = "3.0.0" diff --git a/crates/como_web/Cargo.toml b/crates/como_web/Cargo.toml index fe69787..ab9a7c2 100644 --- a/crates/como_web/Cargo.toml +++ b/crates/como_web/Cargo.toml @@ -8,7 +8,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] console_error_panic_hook = "0.1" -console_log = "0.2" +console_log = "1.0" cfg-if = "1" lazy_static = "1" leptos = { version = "*", features = ["serde"] } @@ -17,11 +17,11 @@ leptos_meta = { version = "*" } leptos_axum = { version = "*", optional = true } leptos_router = { version = "*" } log = "0.4" -simple_logger = "4" +simple_logger = "5" thiserror = "1" -axum = { version = "0.6.1", optional = true } +axum = { version = "0.7.0", optional = true } tower = { version = "0.4.13", optional = true } -tower-http = { version = "0.3.4", features = ["fs"], optional = true } +tower-http = { version = "0.5.0", features = ["fs"], optional = true } tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"], optional = true } wasm-bindgen = "0.2" tracing-subscriber = { version = "0.3.16", optional = true, features = [ @@ -33,7 +33,7 @@ anyhow = { version = "1.0.71" } serde = { workspace = true } chrono = { workspace = true } uuid = { workspace = true, features = ["v4", "wasm-bindgen", "js", "serde"] } -graphql_client = { version = "0.13.0", features = ["reqwest"] } +graphql_client = { version = "0.14.0", features = ["reqwest"] } reqwasm = "0.5.0" serde_json = "1.0.96" diff --git a/templates/local_up.Dockerfile b/templates/local_up.Dockerfile index c6f6be7..d941475 100644 --- a/templates/local_up.Dockerfile +++ b/templates/local_up.Dockerfile @@ -1,3 +1,3 @@ -FROM postgres:14-alpine +FROM postgres:16-alpine COPY *.sh /docker-entrypoint-initdb.d/