feat: Add name default and manual configuration

This commit is contained in:
quexeky
2026-01-26 09:06:48 +11:00
parent 820c1b06f9
commit a72cac7259
9 changed files with 123 additions and 70 deletions
+2 -2
View File
@@ -37,13 +37,13 @@ impl DepotManifest {
}
}
pub async fn generate_manifest(dir: &Path) -> anyhow::Result<Manifest> {
pub async fn generate_v2_manifest(dir: &Path) -> anyhow::Result<Manifest> {
let progress_bar = ProgressBar::new(10_000).with_style(
ProgressStyle::default_bar()
.template("[{elapsed_precise}] [ETA {eta}] {bar} {percent_precise}%")
.unwrap(),
);
generate_manifest_rusty(
dir,
|progress| {