From 4702338a67115740138aed2c1e833f3f7853bd8b Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Wed, 20 Nov 2024 05:53:21 +0000 Subject: [PATCH] chore(deps): update all dependencies --- crates/scel_api/Cargo.toml | 10 +++++----- crates/scel_core/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/scel_api/Cargo.toml b/crates/scel_api/Cargo.toml index f8e1b96..5ca376e 100644 --- a/crates/scel_api/Cargo.toml +++ b/crates/scel_api/Cargo.toml @@ -6,16 +6,16 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = { version = "0.5.17" } -axum-extra = { version = "0.3.7", features = ["spa"] } +axum = { version = "0.7.0" } +axum-extra = { version = "0.9.0", features = ["spa"] } futures = "0.3.30" -tower-http = { version = "0.3.4", features = ["cors", "trace"] } -async-graphql = { version = "4.0.16", features = [ +tower-http = { version = "0.6.0", features = ["cors", "trace"] } +async-graphql = { version = "7.0.0", features = [ 'tracing', 'opentelemetry', "log", ] } -async-graphql-axum = { version = "4.0.16" } +async-graphql-axum = { version = "7.0.0" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.89" tokio = { version = "1.22", features = ["full"] } diff --git a/crates/scel_core/Cargo.toml b/crates/scel_core/Cargo.toml index c8b81ce..e1c6bec 100644 --- a/crates/scel_core/Cargo.toml +++ b/crates/scel_core/Cargo.toml @@ -13,5 +13,5 @@ futures = "0.3.30" tracing = "0.1" lazy_static = "1.4.0" regex = { version = "1.7.0" } -thiserror = "1.0.37" +thiserror = "2.0.0" uuid = {version = "1.2.2", features = ["v4", "fast-rng"]}