diff --git a/Cargo.lock b/Cargo.lock index b3962562..fe7645c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -304,9 +304,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "7.0.7" +version = "7.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b76aba2f176af685c2229633881a3adeae51f87ae1811781e73910b7001c93e" +checksum = "a19415d9541f1758f39bdf0c732848beb7e2e39df9b32f90c6635882c3f9173a" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -318,6 +318,7 @@ dependencies = [ "chrono", "fast_chemail", "fnv", + "futures-timer", "futures-util", "handlebars", "http 1.1.0", @@ -340,9 +341,9 @@ dependencies = [ [[package]] name = "async-graphql-axum" -version = "7.0.6" +version = "7.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28f874ad4bc10519f3fa500e36814452033a5ce9ea681ab0a2e0d3b1f18bae44" +checksum = "686e48ce7820a1cf404b5c8e9b90ae24d03c867a408d8d651183945c7a554982" dependencies = [ "async-graphql", "async-trait", @@ -2297,6 +2298,12 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +[[package]] +name = "futures-timer" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" + [[package]] name = "futures-util" version = "0.3.30" diff --git a/apps/server/Cargo.toml b/apps/server/Cargo.toml index 6bf91654..fe440987 100644 --- a/apps/server/Cargo.toml +++ b/apps/server/Cargo.toml @@ -24,7 +24,7 @@ tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] } # GraphQL async-graphql = { version = "7.0.7", features = ["uuid", "chrono", "log"] } -async-graphql-axum = "7.0.3" +async-graphql-axum = "7.0.7" # Rest utoipa = { version = "4.2.0", features = ["axum_extras"] }