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"