1
Fork 0

Move mod cargo below the import statements

Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
onur-ozkan 2025-01-08 14:19:04 +00:00
parent ab3924b298
commit 61bda87b0d

View file

@ -1,5 +1,3 @@
mod cargo;
use std::any::{Any, type_name};
use std::cell::{Cell, RefCell};
use std::collections::BTreeSet;
@ -25,6 +23,8 @@ use crate::utils::exec::{BootstrapCommand, command};
use crate::utils::helpers::{self, LldThreads, add_dylib_path, exe, libdir, linker_args, t};
use crate::{Build, Crate};
mod cargo;
#[cfg(test)]
mod tests;