Skip to content

Commit

Permalink
Move mod cargo below the import statements
Browse files Browse the repository at this point in the history
Signed-off-by: onur-ozkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Jan 8, 2025
1 parent ab3924b commit 61bda87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/src/core/builder/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
mod cargo;

use std::any::{Any, type_name};
use std::cell::{Cell, RefCell};
use std::collections::BTreeSet;
Expand All @@ -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;

Expand Down

0 comments on commit 61bda87

Please sign in to comment.