From b10b72c0cc02e13704a67222895fce963e7dcfc6 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 12 Aug 2024 03:25:03 +0700 Subject: [PATCH] core-foundation: Use dep syntax for `with-uuid` feature. (#691) This removes an implicit feature due to the optional dependency `uuid`. While this is user visible, any use of `uuid` as a feature previously would not have enabled the support code and so it wouldn't have had any benefit. --- core-foundation/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-foundation/Cargo.toml b/core-foundation/Cargo.toml index 1a8dffa9..da55651f 100644 --- a/core-foundation/Cargo.toml +++ b/core-foundation/Cargo.toml @@ -25,7 +25,7 @@ default = ["link"] mac_os_10_7_support = ["core-foundation-sys/mac_os_10_7_support"] # backwards compatibility mac_os_10_8_features = ["core-foundation-sys/mac_os_10_8_features"] # enables new features -with-uuid = ["uuid"] +with-uuid = ["dep:uuid"] # Disable to manually link. Enabled by default. link = ["core-foundation-sys/link"]