From 4b7498ba73d7ca4db41dd3be9ddeab948f787ef8 Mon Sep 17 00:00:00 2001 From: David Lutterkort Date: Mon, 17 Feb 2025 16:38:45 -0800 Subject: [PATCH] all: Don't enable uuid feature in async-graphql --- Cargo.lock | 5 ----- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c1e8bb0018..c511d00601f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -211,7 +211,6 @@ dependencies = [ "static_assertions_next", "tempfile", "thiserror 1.0.61", - "uuid", ] [[package]] @@ -5717,10 +5716,6 @@ name = "uuid" version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" -dependencies = [ - "getrandom 0.3.1", - "serde", -] [[package]] name = "vcpkg" diff --git a/Cargo.toml b/Cargo.toml index b01bc4d4fd1..a8193c3f0ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ license = "MIT OR Apache-2.0" [workspace.dependencies] anyhow = "1.0" -async-graphql = { version = "7.0.15", features = ["chrono", "uuid"] } +async-graphql = { version = "7.0.15", features = ["chrono"] } async-graphql-axum = "7.0.15" axum = "0.8.1" chrono = "0.4.38"