From a5aac84fa2cabb664ae564eaaee9b6f8f35f8df0 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Wed, 24 Jul 2024 14:39:59 +0200 Subject: [PATCH] Cargo.toml: exclude uuid from machete For some reason cargo-machete shows false positive of uuid, which is actually needed for building ue-rs. Exlude uuid from machete. --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 25f49d4..bce9276 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,3 +46,7 @@ strip = true # Reduce binary size by using one codegen unit for similar gains as thin LTO # (which we had problem with when cross-compiling) codegen-units = 1 + +# cargo-machete shows false positive of uuid, which is actually needed. +[package.metadata.cargo-machete] +ignored = ["uuid"]