From 6b3048bb2e169ed5568947da3a5cf831648a2403 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Nov 2021 04:26:02 +0000 Subject: [PATCH] Update graphql-parser requirement from 0.3 to 0.4 Updates the requirements on [graphql-parser](https://github.com/graphql-rust/graphql-parser) to permit the latest version. - [Release notes](https://github.com/graphql-rust/graphql-parser/releases) - [Commits](https://github.com/graphql-rust/graphql-parser/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: graphql-parser dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- juniper/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 0501aea3b..50d7cdfa2 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -42,7 +42,7 @@ chrono-tz = { version = "0.5", default-features = false, optional = true } fnv = "1.0.3" futures = { version = "0.3.1", features = ["alloc"], default-features = false } futures-enum = { version = "0.1.12", default-features = false } -graphql-parser = { version = "0.3", optional = true } +graphql-parser = { version = "0.4", optional = true } indexmap = { version = "1.0", features = ["serde-1"] } serde = { version = "1.0.8", features = ["derive"], default-features = false } serde_json = { version = "1.0.2", default-features = false, optional = true }