From 79017cd761321f6087ad96fe0e348d50500a4b03 Mon Sep 17 00:00:00 2001 From: Isaiah Inuwa Date: Fri, 19 Dec 2025 07:49:14 -0600 Subject: [PATCH] Gate dev-dependencies behind windows OS target --- apps/desktop/desktop_native/win_webauthn/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/desktop/desktop_native/win_webauthn/Cargo.toml b/apps/desktop/desktop_native/win_webauthn/Cargo.toml index 81361617827..a246ed4ba73 100644 --- a/apps/desktop/desktop_native/win_webauthn/Cargo.toml +++ b/apps/desktop/desktop_native/win_webauthn/Cargo.toml @@ -5,9 +5,6 @@ license.workspace = true edition.workspace = true publish.workspace = true -[dev-dependencies] -hex = { workspace = true } - [lints] workspace = true @@ -23,3 +20,6 @@ windows = { workspace = true, features = [ "Win32_System_LibraryLoader", ] } windows-core = { workspace = true } + +[target.'cfg(windows)'.dev-dependencies] +hex = { workspace = true }