Skip to content

Commit ec25a58

Browse files
committed
chore: development v0.3.54 - comprehensive testing complete [auto-commit]
1 parent 2e168da commit ec25a58

File tree

9 files changed

+111
-54
lines changed

9 files changed

+111
-54
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ exclude = [
3636
# Workspace Package Metadata (inherited by all crates)
3737
# ─────────────────────────────────────────────────────────────────────────────
3838
[workspace.package]
39-
version = "0.3.53"
39+
version = "0.3.54"
4040
edition = "2024"
4141
rust-version = "1.85"
4242
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"

crates/uffs-cli/src/commands/output.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,10 @@ pub(super) fn write_results(
11581158
///
11591159
/// Uses CRLF line endings (`\r\n`) to match C++ baseline behavior.
11601160
/// When `row_count` is < 20,000, appends the fast-scan message.
1161-
fn write_cpp_drive_footer<W: Write + ?Sized>(writer: &mut W, ctx: &CppFooterContext<'_>) -> Result<()> {
1161+
fn write_cpp_drive_footer<W: Write + ?Sized>(
1162+
writer: &mut W,
1163+
ctx: &CppFooterContext<'_>,
1164+
) -> Result<()> {
11621165
if ctx.output_targets.is_empty() {
11631166
return Ok(());
11641167
}

0 commit comments

Comments
 (0)