Optimize and format imports

[skip ci]
This commit is contained in:
topjohnwu
2025-04-08 09:56:57 -07:00
parent eb54bc1fd7
commit 9c7d359093
25 changed files with 64 additions and 67 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
use std::fmt;
use std::fmt::Arguments;
use std::io::{stderr, stdout, Write};
use std::io::{Write, stderr, stdout};
use std::process::exit;
use num_derive::{FromPrimitive, ToPrimitive};
use num_traits::FromPrimitive;
use crate::ffi::LogLevelCxx;
use crate::{cstr_buf, Utf8CStr};
use crate::{Utf8CStr, cstr_buf};
// Ugly hack to avoid using enum
#[allow(non_snake_case, non_upper_case_globals)]