From 9f3039407a57541329e6a9cb50ea4427c43ad2c7 Mon Sep 17 00:00:00 2001 From: kyoto7250 <50972773+kyoto7250@users.noreply.github.com> Date: Mon, 8 Aug 2022 17:06:06 +0900 Subject: [PATCH] update async-graphql-axum (#939) --- examples/graphql_example/Cargo.toml | 2 +- examples/graphql_example/entity/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/graphql_example/Cargo.toml b/examples/graphql_example/Cargo.toml index d1d6d6d1..13c72e0b 100644 --- a/examples/graphql_example/Cargo.toml +++ b/examples/graphql_example/Cargo.toml @@ -13,7 +13,7 @@ members = [".", "entity", "migration"] tokio = { version = "1.0", features = ["full"] } axum = "^0.5.1" dotenv = "0.15.0" -async-graphql-axum = "^3.0.38" +async-graphql-axum = "^4.0.6" entity = { path = "entity" } migration = { path = "migration" } diff --git a/examples/graphql_example/entity/Cargo.toml b/examples/graphql_example/entity/Cargo.toml index 9483f174..ace561fd 100644 --- a/examples/graphql_example/entity/Cargo.toml +++ b/examples/graphql_example/entity/Cargo.toml @@ -12,7 +12,7 @@ path = "src/lib.rs" serde = { version = "1", features = ["derive"] } [dependencies.async-graphql] -version = "^3.0.38" +version = "^4.0.6" [dependencies.sea-orm] path = "../../../" # remove this line in your own project