From 21defab2fc95f1e1d0639b66ab2c449266a114fe Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 7 Jun 2026 02:56:48 +0800 Subject: Rename cargo style functions and remove unused imports --- mling/src/bin/mling.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mling/src/bin') diff --git a/mling/src/bin/mling.rs b/mling/src/bin/mling.rs index 587aeb9..d48f439 100644 --- a/mling/src/bin/mling.rs +++ b/mling/src/bin/mling.rs @@ -1,6 +1,5 @@ use std::{env::current_dir, process::exit}; -use colored::Colorize; use mingling::{ Program, hook::ProgramHook, @@ -65,7 +64,7 @@ fn main() { if result.exit_code == 0 && render_output { println!("{}", result.trim()); } else if error_output { - eprintln!("{}", result.trim().bright_red()); + eprintln!("{}", result.trim()); } } exit(result.exit_code); -- cgit