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)]