Skip to content

Commit 8acbfc6

Browse files
committed
chore: development v0.2.106 - comprehensive testing complete [auto-commit]
1 parent e61a928 commit 8acbfc6

File tree

12 files changed

+66
-39
lines changed

12 files changed

+66
-39
lines changed

Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ exclude = [
3939
# Workspace Package Metadata (inherited by all crates)
4040
# ─────────────────────────────────────────────────────────────────────────────
4141
[workspace.package]
42-
version = "0.2.105"
42+
version = "0.2.106"
4343
edition = "2024"
4444
rust-version = "1.85"
4545
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Traditional file search tools (including `os.walk`, `FindFirstFile`, etc.) work
2121

2222
**UFFS reads the MFT directly** - once - and queries it in memory using Polars DataFrames. This is like reading the entire phonebook once instead of looking up each name individually.
2323

24-
### Benchmark Results (v0.2.105)
24+
### Benchmark Results (v0.2.106)
2525

2626
| Drive Type | Records | Time | Throughput |
2727
|------------|---------|------|------------|
@@ -33,7 +33,7 @@ Traditional file search tools (including `os.walk`, `FindFirstFile`, etc.) work
3333

3434
| Comparison | Records | Time | Notes |
3535
|------------|---------|------|-------|
36-
| **UFFS v0.2.105** | **18.7 Million** | **~142 seconds** | All disks, fast mode |
36+
| **UFFS v0.2.106** | **18.7 Million** | **~142 seconds** | All disks, fast mode |
3737
| UFFS v0.1.30 | 18.7 Million | ~315 seconds | Baseline |
3838
| Everything | 19 Million | 178 seconds | All disks |
3939
| WizFile | 6.5 Million | 299 seconds | Single HDD |

crates/uffs-mft/src/io.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -483,12 +483,11 @@ impl MftRecordReader {
483483
// ============================================================================
484484

485485
// Re-export ParsedColumns from parse module (now cross-platform)
486-
pub use crate::parse::ParsedColumns;
487486
// Re-export placeholder creation helper (also in parse module)
488-
pub use crate::parse::add_missing_parent_placeholders_to_vec;
489487
pub use crate::parse::{
490-
ExtensionAttributes, ParseResult, ParsedRecord, apply_fixup, create_placeholder_record,
491-
parse_record, parse_record_full, parse_record_zero_alloc,
488+
ExtensionAttributes, ParseResult, ParsedColumns, ParsedRecord,
489+
add_missing_parent_placeholders_to_vec, apply_fixup, create_placeholder_record, parse_record,
490+
parse_record_full, parse_record_zero_alloc,
492491
};
493492

494493
// ============================================================================

0 commit comments

Comments
 (0)