aboutsummaryrefslogtreecommitdiff
path: root/mling/src/proj_mgr/show_binaries.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-11 16:10:53 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-11 16:10:53 +0800
commit85c8986f26031cc11ed1e1da77fdf099b5814381 (patch)
treed4a53fadc683988fd30d1ee07de23a11b9d37ac6 /mling/src/proj_mgr/show_binaries.rs
parent810536fb1f068f969af316be0450a1edacfe8e28 (diff)
style: Reorder imports and reformat code with cargo fmt
Diffstat (limited to 'mling/src/proj_mgr/show_binaries.rs')
-rw-r--r--mling/src/proj_mgr/show_binaries.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mling/src/proj_mgr/show_binaries.rs b/mling/src/proj_mgr/show_binaries.rs
index fd2f406..9d5caf0 100644
--- a/mling/src/proj_mgr/show_binaries.rs
+++ b/mling/src/proj_mgr/show_binaries.rs
@@ -2,19 +2,19 @@ use std::path::PathBuf;
use colored::Colorize;
use mingling::{
- macros::{chain, pack, renderer},
Groupped, RenderResult,
+ macros::{chain, pack, renderer},
};
use serde::Serialize;
use std::io::Write as _;
use crate::{
+ Next,
proj_mgr::{
- metadata::{read_metadata, CargoLockFile},
EntryShowBinaries,
+ metadata::{CargoLockFile, read_metadata},
},
res::ResManifestPath,
- Next,
};
#[derive(Serialize, Groupped)]