From 0c7366f8e69011e0be9f877cd37337f225bf228f Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Tue, 25 Oct 2022 21:20:44 +0000 Subject: [PATCH] Update Rust crate async-graphql to 4.0.16 --- Cargo.lock | 18 ++++++++++-------- como_api/Cargo.toml | 2 +- como_bin/Cargo.toml | 2 +- como_domain/Cargo.toml | 2 +- como_gql/Cargo.toml | 2 +- como_infrastructure/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 427de5d..8c7710d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -163,15 +163,16 @@ dependencies = [ [[package]] name = "async-graphql" -version = "4.0.6" +version = "4.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84ecd9edbd48b68e44f81b720d83e670d876dce440856feee6c892c8cd3f6798" +checksum = "d9ed522678d412d77effe47b3c82314ac36952a35e6e852093dd48287c421f80" dependencies = [ "async-graphql-derive", "async-graphql-parser", "async-graphql-value", "async-stream", "async-trait", + "base64", "bytes", "fast_chemail", "fnv", @@ -186,6 +187,7 @@ dependencies = [ "regex", "serde", "serde_json", + "serde_urlencoded", "static_assertions", "tempfile", "thiserror", @@ -212,9 +214,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "4.0.6" +version = "4.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8801127f6a7b3af410498d2f971ee6da8f12f9b0b784473da636ce04e5ac565" +checksum = "c121a894495d7d3fc3d4e15e0a9843e422e4d1d9e3c514d8062a1c94b35b005d" dependencies = [ "Inflector", "async-graphql-parser", @@ -228,9 +230,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "4.0.6" +version = "4.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4097e2e3e313a9220df25485046b7749f4b8d749aba8ed7e09e929d60a643e3" +checksum = "6b6c386f398145c6180206c1869c2279f5a3d45db5be4e0266148c6ac5c6ad68" dependencies = [ "async-graphql-value", "pest", @@ -240,9 +242,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "4.0.6" +version = "4.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cbb3f5e2eb77fbe173b102e3a9321a5f93a491f9c5ef3850e1155ae83c49e88" +checksum = "7a941b499fead4a3fb5392cabf42446566d18c86313f69f2deab69560394d65f" dependencies = [ "bytes", "indexmap", diff --git a/como_api/Cargo.toml b/como_api/Cargo.toml index 78fde40..6e6d7da 100644 --- a/como_api/Cargo.toml +++ b/como_api/Cargo.toml @@ -11,7 +11,7 @@ como_core = { path = "../como_core" } como_domain = { path = "../como_domain" } como_infrastructure = { path = "../como_infrastructure" } -async-graphql = "4.0.6" +async-graphql = "4.0.16" async-graphql-axum = "*" axum = "0.5.13" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } diff --git a/como_bin/Cargo.toml b/como_bin/Cargo.toml index 148e1b8..d6e0fd0 100644 --- a/como_bin/Cargo.toml +++ b/como_bin/Cargo.toml @@ -12,7 +12,7 @@ como_domain = { path = "../como_domain" } como_infrastructure = { path = "../como_infrastructure" } como_api = { path = "../como_api" } -async-graphql = "4.0.6" +async-graphql = "4.0.16" async-graphql-axum = "*" axum = "0.5.13" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } diff --git a/como_domain/Cargo.toml b/como_domain/Cargo.toml index ce8b82c..62d05b0 100644 --- a/como_domain/Cargo.toml +++ b/como_domain/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-graphql = { version = "4.0.6", features = ["uuid"] } +async-graphql = { version = "4.0.16", features = ["uuid"] } anyhow = "1.0.60" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.68" diff --git a/como_gql/Cargo.toml b/como_gql/Cargo.toml index e4f8f16..edd8d08 100644 --- a/como_gql/Cargo.toml +++ b/como_gql/Cargo.toml @@ -10,7 +10,7 @@ como_core = { path = "../como_core" } como_domain = { path = "../como_domain" } como_infrastructure = { path = "../como_infrastructure" } -async-graphql = "4.0.6" +async-graphql = "4.0.16" async-graphql-axum = "*" axum = "0.5.13" axum-extra = { version = "*", features = ["cookie", "cookie-private"] } diff --git a/como_infrastructure/Cargo.toml b/como_infrastructure/Cargo.toml index 7c22b00..397ea3e 100644 --- a/como_infrastructure/Cargo.toml +++ b/como_infrastructure/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" como_core = { path = "../como_core" } como_domain = { path = "../como_domain" } -async-graphql = "4.0.6" +async-graphql = "4.0.16" async-graphql-axum = "*" axum = "0.5.13" axum-extra = { version = "*", features = ["cookie", "cookie-private"] }