From ac05e758a69e334e34d14fcfedec9e7050107408 Mon Sep 17 00:00:00 2001 From: Sindri Frostason Date: Thu, 13 Nov 2025 11:45:13 +0000 Subject: [PATCH] fix: opt out of default features in async-graphql --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b1b9245e..c7ad6eea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ features = ["default"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -async-graphql = { version = "7.0", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } +async-graphql = { version = "7.0", default-features = false, features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } sea-orm = { version = "~2.0.0-rc", default-features = false, features = ["seaography", "with-json"] } seaography-macros = { version = "~2.0.0-rc.4", path = "macros", optional = true } itertools = { version = "0.12.0" }