From eaae23eea8bd1a41713fd6f8a13c035c4ebd0198 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:38:52 +0000 Subject: [PATCH] Bump async-graphql from 6.0.10 to 7.0.2 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.10 to 7.0.2. - [Release notes](https://github.com/async-graphql/async-graphql/releases) - [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md) - [Commits](https://github.com/async-graphql/async-graphql/commits) --- updated-dependencies: - dependency-name: async-graphql dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 170 ++++++++++++++++++++++++++++++++-------- apps/api/Cargo.toml | 2 +- libs/domains/Cargo.toml | 2 +- libs/utils/Cargo.toml | 2 +- 4 files changed, 141 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de7f349..feffcfd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,17 +110,47 @@ checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a" [[package]] name = "async-graphql" -version = "6.0.10" +version = "6.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a665c228a226506796fca6de90cf1ad477157513ee15d6327bf810d5a3a98f72" +checksum = "298a5d587d6e6fdb271bf56af2dc325a80eb291fd0fc979146584b9a05494a8c" dependencies = [ - "async-graphql-derive", - "async-graphql-parser", - "async-graphql-value", + "async-graphql-derive 6.0.11", + "async-graphql-parser 6.0.11", + "async-graphql-value 6.0.11", "async-stream", "async-trait", "base64 0.13.1", "bytes", + "fnv", + "futures-util", + "http 0.2.9", + "indexmap", + "mime", + "multer 2.1.0", + "num-traits", + "once_cell", + "pin-project-lite", + "regex", + "serde", + "serde_json", + "serde_urlencoded", + "static_assertions", + "thiserror", +] + +[[package]] +name = "async-graphql" +version = "7.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ba89a35adbed833e0d21db467093a087c3a07b497626009eae02cb36f060567" +dependencies = [ + "async-graphql-derive 7.0.2", + "async-graphql-parser 7.0.2", + "async-graphql-value 7.0.2", + "async-stream", + "async-trait", + "base64 0.21.5", + "bytes", "chrono", "fast_chemail", "fnv", @@ -128,11 +158,11 @@ dependencies = [ "futures-timer", "futures-util", "handlebars", - "http", + "http 1.0.0", "indexmap", "lru", "mime", - "multer", + "multer 3.0.0", "num-traits", "once_cell", "pin-project-lite", @@ -140,7 +170,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "static_assertions", + "static_assertions_next", "tempfile", "thiserror", ] @@ -151,7 +181,7 @@ version = "6.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f0f743cae5a878edf00b6aa59479241310e9341345262e952e9c9e071eb3384" dependencies = [ - "async-graphql", + "async-graphql 6.0.11", "async-trait", "axum", "bytes", @@ -165,12 +195,29 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "6.0.10" +version = "6.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2f04964faf9ad71289d4c51b3b43a7b9c01c23c16d9c52bca48161ba8a3cbc3" +checksum = "c7f329c7eb9b646a72f70c9c4b516c70867d356ec46cb00dcac8ad343fd006b0" dependencies = [ "Inflector", - "async-graphql-parser", + "async-graphql-parser 6.0.11", + "darling", + "proc-macro-crate", + "proc-macro2", + "quote", + "strum", + "syn 2.0.39", + "thiserror", +] + +[[package]] +name = "async-graphql-derive" +version = "7.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9547f7f22688f022ea8001bdd57a1fce8996045dcb959b1730a79bafd366a9d9" +dependencies = [ + "Inflector", + "async-graphql-parser 7.0.2", "darling", "proc-macro-crate", "proc-macro2", @@ -182,11 +229,23 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "6.0.10" +version = "6.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786a2329756a9946d83106e389a977a808ab22628cb797c1afcf174fd01c40d5" +checksum = "6139181845757fd6a73fbb8839f3d036d7150b798db0e9bb3c6e83cdd65bd53b" dependencies = [ - "async-graphql-value", + "async-graphql-value 6.0.11", + "pest", + "serde", + "serde_json", +] + +[[package]] +name = "async-graphql-parser" +version = "7.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8e3d4cc5074c46adfee619b5b6cf817943332f772ed5930ed78871f7dbbac6" +dependencies = [ + "async-graphql-value 7.0.2", "pest", "serde", "serde_json", @@ -194,9 +253,21 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "6.0.10" +version = "6.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "305ca1e36538655babbfa8a9a1d82cb1dd01961af2feeafa06d3a0c9af793bed" +checksum = "323a5143f5bdd2030f45e3f2e0c821c9b1d36e79cf382129c64299c50a7f3750" +dependencies = [ + "bytes", + "indexmap", + "serde", + "serde_json", +] + +[[package]] +name = "async-graphql-value" +version = "7.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53ff1287a1283ea772b4099dd556ba4577d35f069ea4a93f337a525beefcfacf" dependencies = [ "bytes", "indexmap", @@ -280,7 +351,7 @@ dependencies = [ "bytes", "futures-util", "headers", - "http", + "http 0.2.9", "http-body", "hyper", "itoa", @@ -312,7 +383,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 0.2.9", "http-body", "mime", "rustversion", @@ -440,7 +511,7 @@ name = "caster-api" version = "0.1.0" dependencies = [ "anyhow", - "async-graphql", + "async-graphql 7.0.2", "async-graphql-axum", "axum", "biscuit", @@ -485,7 +556,7 @@ dependencies = [ "biscuit", "caster-utils", "fake", - "http", + "http 0.2.9", "hyper", "hyper-tls", "jsonwebtoken", @@ -505,7 +576,7 @@ name = "caster-domains" version = "0.1.0" dependencies = [ "anyhow", - "async-graphql", + "async-graphql 7.0.2", "async-trait", "caster-auth", "caster-testing", @@ -548,8 +619,8 @@ name = "caster-utils" version = "0.1.0" dependencies = [ "anyhow", - "async-graphql", - "async-graphql-parser", + "async-graphql 7.0.2", + "async-graphql-parser 6.0.11", "async-trait", "fake", "figment", @@ -891,7 +962,7 @@ dependencies = [ "chrono", "deunicode", "dummy", - "http", + "http 0.2.9", "rand", "url-escape", "uuid", @@ -1178,7 +1249,7 @@ dependencies = [ "base64 0.21.5", "bytes", "headers-core", - "http", + "http 0.2.9", "httpdate", "mime", "sha1", @@ -1190,7 +1261,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "http", + "http 0.2.9", ] [[package]] @@ -1252,6 +1323,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.5" @@ -1259,7 +1341,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.9", "pin-project-lite", ] @@ -1291,7 +1373,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", + "http 0.2.9", "http-body", "httparse", "httpdate", @@ -1666,7 +1748,25 @@ dependencies = [ "bytes", "encoding_rs", "futures-util", - "http", + "http 0.2.9", + "httparse", + "log", + "memchr", + "mime", + "spin 0.9.8", + "version_check", +] + +[[package]] +name = "multer" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a15d522be0a9c3e46fd2632e272d178f56387bdb5c9fbb3a36c649062e9b5219" +dependencies = [ + "bytes", + "encoding_rs", + "futures-util", + "http 1.0.0", "httparse", "log", "memchr", @@ -3016,6 +3116,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" +[[package]] +name = "static_assertions_next" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7beae5182595e9a8b683fa98c4317f956c9a2dec3b9716990d20023cc60c766" + [[package]] name = "string_cache" version = "0.8.7" @@ -3376,7 +3482,7 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", + "http 0.2.9", "http-body", "http-range-header", "pin-project-lite", @@ -3474,7 +3580,7 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 0.2.9", "httparse", "log", "rand", diff --git a/apps/api/Cargo.toml b/apps/api/Cargo.toml index 7c77b6d..79d635a 100644 --- a/apps/api/Cargo.toml +++ b/apps/api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0" -async-graphql = { version = "6.0", features = ["chrono"] } +async-graphql = { version = "7.0", features = ["chrono"] } async-graphql-axum = "6.0" axum = "0.6" biscuit = "0.6.0-beta1" diff --git a/libs/domains/Cargo.toml b/libs/domains/Cargo.toml index 8c37630..360d39d 100644 --- a/libs/domains/Cargo.toml +++ b/libs/domains/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0" -async-graphql = { version = "6.0", features = ["chrono", "dataloader"] } +async-graphql = { version = "7.0", features = ["chrono", "dataloader"] } async-trait = "0.1.41" caster-auth = { path = "../auth" } caster-utils = { path = "../utils" } diff --git a/libs/utils/Cargo.toml b/libs/utils/Cargo.toml index b778e6c..1afed1d 100644 --- a/libs/utils/Cargo.toml +++ b/libs/utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0" -async-graphql = { version = "6.0", features = ["chrono"] } +async-graphql = { version = "7.0", features = ["chrono"] } async-graphql-parser = "6.0" async-trait = "0.1.41" sea-orm = { version = "0.12", features = [