From 5e6409061b5de45e7a528e185b1ddb76de33aa52 Mon Sep 17 00:00:00 2001 From: "Leandro G. Almeida" Date: Thu, 20 Aug 2026 14:30:14 -0700 Subject: [PATCH] fixed macos release build: restore notice imports used by mac() The mac() path needs Color, Attribute, and notice, but those imports were gated to Windows only. --- rustique-core/src/rustique_options.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rustique-core/src/rustique_options.rs b/rustique-core/src/rustique_options.rs index 367d311..03fc0d7 100644 --- a/rustique-core/src/rustique_options.rs +++ b/rustique-core/src/rustique_options.rs @@ -1,13 +1,13 @@ use crate::config::config_manager::get_config; use crate::utils::get_expanded_path; use std::path::PathBuf; -#[cfg(windows)] +#[cfg(any(windows, target_os = "macos"))] use comfy_table::{Attribute, Color}; #[cfg(unix)] use dirs::home_dir; use tracing::info; -#[cfg(windows)] +#[cfg(any(windows, target_os = "macos"))] use crate::information_utils::notice; #[derive(Clone, Debug)]