From d8aa972ee37e82b8f7358021f621b1712b27d74a Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sun, 26 May 2024 00:50:31 +0000 Subject: [PATCH] chore(deps): update all dependencies --- Cargo.lock | 16 ++++++++-------- crates/scel_api/Cargo.toml | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7942634..9109e76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -53,9 +53,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.82" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" +checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "arrayref" @@ -222,9 +222,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.79" +version = "0.1.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" +checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" dependencies = [ "proc-macro2", "quote", @@ -1845,18 +1845,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.58" +version = "1.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.58" +version = "1.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" dependencies = [ "proc-macro2", "quote", diff --git a/crates/scel_api/Cargo.toml b/crates/scel_api/Cargo.toml index f8e1b96..137c329 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.5.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"] }