1 Commits

Author SHA1 Message Date
f4f91c42f6 fix(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2024-12-11 05:19:54 +00:00
6 changed files with 32 additions and 35 deletions

27
Cargo.lock generated
View File

@@ -887,10 +887,6 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "ci"
version = "0.1.0"
[[package]] [[package]]
name = "ciborium" name = "ciborium"
version = "0.2.1" version = "0.2.1"
@@ -4883,10 +4879,11 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]] [[package]]
name = "tracing" name = "tracing"
version = "0.1.41" version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [ dependencies = [
"cfg-if 1.0.0",
"log", "log",
"pin-project-lite", "pin-project-lite",
"tracing-attributes", "tracing-attributes",
@@ -4895,9 +4892,9 @@ dependencies = [
[[package]] [[package]]
name = "tracing-attributes" name = "tracing-attributes"
version = "0.1.28" version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -4906,9 +4903,9 @@ dependencies = [
[[package]] [[package]]
name = "tracing-core" name = "tracing-core"
version = "0.1.33" version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"valuable", "valuable",
@@ -4916,20 +4913,20 @@ dependencies = [
[[package]] [[package]]
name = "tracing-log" name = "tracing-log"
version = "0.2.0" version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [ dependencies = [
"lazy_static",
"log", "log",
"once_cell",
"tracing-core", "tracing-core",
] ]
[[package]] [[package]]
name = "tracing-subscriber" name = "tracing-subscriber"
version = "0.3.19" version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [ dependencies = [
"matchers", "matchers",
"nu-ansi-term", "nu-ansi-term",

View File

@@ -15,18 +15,18 @@ como_api = { path = "./crates/como_api/" }
como_auth = { path = "./crates/como_auth/" } como_auth = { path = "./crates/como_auth/" }
async-trait = "0.1.68" async-trait = "0.1.68"
async-graphql = { version = "5.0.9", features = ["uuid"] } async-graphql = { version = "7.0.0", features = ["uuid"] }
async-graphql-axum = "5.0.9" async-graphql-axum = "7.0.0"
axum = { version = "0.6.18", features = ["headers", "macros"] } axum = { version = "0.7.0", features = ["headers", "macros"] }
axum-extra = { version = "0.7.4", features = ["cookie", "cookie-private"] } axum-extra = { version = "0.9.0", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "0.5.0" } axum-sessions = { version = "0.6.0" }
async-sqlx-session = { version = "0.4.0", features = ["pg"] } async-sqlx-session = { version = "0.4.0", features = ["pg"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68" serde_json = "1.0.68"
sqlx = { version = "0.6.2", features = [ sqlx = { version = "0.8.0", features = [
"runtime-tokio-rustls", "runtime-tokio-rustls",
"postgres", "postgres",
"migrate", "migrate",

View File

@@ -27,8 +27,8 @@ anyhow.workspace = true
tracing.workspace = true tracing.workspace = true
async-sqlx-session.workspace = true async-sqlx-session.workspace = true
zitadel = { version = "3.3.1", features = ["axum"] } zitadel = { version = "5.0.0", features = ["axum"] }
tower = "0.4.13" tower = "0.5.0"
tower-http = { version = "0.4.0", features = ["cors", "trace"] } tower-http = { version = "0.6.0", features = ["cors", "trace"] }
oauth2 = "4.4.0" oauth2 = "4.4.0"
openidconnect = "3.0.0" openidconnect = "3.0.0"

View File

@@ -18,9 +18,9 @@ anyhow.workspace = true
tracing.workspace = true tracing.workspace = true
async-sqlx-session.workspace = true async-sqlx-session.workspace = true
zitadel = { version = "3.3.1", features = ["axum"] } zitadel = { version = "5.0.0", features = ["axum"] }
tower = "0.4.13" tower = "0.5.0"
tower-http = { version = "0.4.0", features = ["cors", "trace"] } tower-http = { version = "0.6.0", features = ["cors", "trace"] }
oauth2 = "4.4.0" oauth2 = "4.4.0"
openidconnect = "3.0.0" openidconnect = "3.0.0"

View File

@@ -8,7 +8,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
console_error_panic_hook = "0.1" console_error_panic_hook = "0.1"
console_log = "0.2" console_log = "1.0"
cfg-if = "1" cfg-if = "1"
lazy_static = "1" lazy_static = "1"
leptos = { version = "*", features = ["serde"] } leptos = { version = "*", features = ["serde"] }
@@ -17,11 +17,11 @@ leptos_meta = { version = "*" }
leptos_axum = { version = "*", optional = true } leptos_axum = { version = "*", optional = true }
leptos_router = { version = "*" } leptos_router = { version = "*" }
log = "0.4" log = "0.4"
simple_logger = "4" simple_logger = "5"
thiserror = "1" thiserror = "2"
axum = { version = "0.6.1", optional = true } axum = { version = "0.7.0", optional = true }
tower = { version = "0.4.13", optional = true } tower = { version = "0.5.0", optional = true }
tower-http = { version = "0.3.4", features = ["fs"], optional = true } tower-http = { version = "0.6.0", features = ["fs"], optional = true }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"], optional = true } tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"], optional = true }
wasm-bindgen = "0.2" wasm-bindgen = "0.2"
tracing-subscriber = { version = "0.3.16", optional = true, features = [ tracing-subscriber = { version = "0.3.16", optional = true, features = [
@@ -33,7 +33,7 @@ anyhow = { version = "1.0.71" }
serde = { workspace = true } serde = { workspace = true }
chrono = { workspace = true } chrono = { workspace = true }
uuid = { workspace = true, features = ["v4", "wasm-bindgen", "js", "serde"] } 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" reqwasm = "0.5.0"
serde_json = "1.0.96" serde_json = "1.0.96"

View File

@@ -1,3 +1,3 @@
FROM postgres:14-alpine FROM postgres:17-alpine
COPY *.sh /docker-entrypoint-initdb.d/ COPY *.sh /docker-entrypoint-initdb.d/