From 738f73c4bc5fa01aa29594eee2cb9b9927b27e87 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Mon, 11 Apr 2022 11:05:10 +0800 Subject: [PATCH] Fix GraphQL example build errors --- examples/graphql_example/Cargo.toml | 4 ++-- examples/graphql_example/entity/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/graphql_example/Cargo.toml b/examples/graphql_example/Cargo.toml index f26e417f..6b1de9ec 100644 --- a/examples/graphql_example/Cargo.toml +++ b/examples/graphql_example/Cargo.toml @@ -11,8 +11,8 @@ members = [".", "entity", "migration"] [dependencies] tokio = { version = "1.0", features = ["full"] } -axum = "0.4.8" +axum = "^0.5.1" dotenv = "0.15.0" -async-graphql-axum = "3.0.31" +async-graphql-axum = "^3.0.38" entity = { path = "entity" } migration = { path = "migration" } diff --git a/examples/graphql_example/entity/Cargo.toml b/examples/graphql_example/entity/Cargo.toml index 6f632965..c7e1da0a 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.12" +version = "^3.0.38" [dependencies.sea-orm] version = "^0.7.0"