diff --git a/Cargo.lock b/Cargo.lock index df50620c..81f8af95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,9 +291,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "6.0.9" +version = "6.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117113a7ff4a98f2a864fa7a5274033b0907fce65dc8464993c75033f8074f90" +checksum = "a665c228a226506796fca6de90cf1ad477157513ee15d6327bf810d5a3a98f72" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -328,9 +328,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "6.0.9" +version = "6.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e4bb7b7b2344d24af860776b7fe4e4ee4a67cd965f076048d023f555703b854" +checksum = "d2f04964faf9ad71289d4c51b3b43a7b9c01c23c16d9c52bca48161ba8a3cbc3" dependencies = [ "Inflector", "async-graphql-parser", @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "6.0.9" +version = "6.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c47e1c1ff6cb7cae62c9cd768d76475cc68f156d8234b024fd2499ad0e91da21" +checksum = "786a2329756a9946d83106e389a977a808ab22628cb797c1afcf174fd01c40d5" dependencies = [ "async-graphql-value", "pest", @@ -357,9 +357,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "6.0.9" +version = "6.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2270df3a642efce860ed06fbcf61fc6db10f83c2ecb5613127fb453c82e012a4" +checksum = "305ca1e36538655babbfa8a9a1d82cb1dd01961af2feeafa06d3a0c9af793bed" dependencies = [ "bytes", "indexmap 2.1.0", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index fb7c59b6..d9af6bf6 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -9,7 +9,7 @@ repository.workspace = true [dependencies] anyhow.workspace = true -async-graphql = { version = "6.0.9", features = ["chrono", "url"] } +async-graphql = { version = "6.0.10", features = ["chrono", "url"] } async-trait = "0.1.74" chrono.workspace = true lettre = { version = "0.11.1", default-features = false } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index b5a73b6e..e67b78a9 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -30,7 +30,7 @@ axum = "0.6.20" axum-macros = "0.3.8" axum-extra = { version = "0.8.0", features = ["cookie-private"] } -async-graphql = { version = "6.0.9", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "6.0.10", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.11.1", default-features = false, features = ["builder"] }