Skip to content

Commit ce2d10a

Browse files
committed
fix: enable zstd feature for uffs-mft in workspace
Compression is the default for save-raw, so zstd should be enabled
1 parent 56aec32 commit ce2d10a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ members = [
3232
# Workspace Package Metadata (inherited by all crates)
3333
# ─────────────────────────────────────────────────────────────────────────────
3434
[workspace.package]
35-
version = "0.2.0"
35+
version = "0.2.1"
3636
edition = "2024"
3737
rust-version = "1.85"
3838
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"
@@ -50,7 +50,7 @@ categories = ["filesystem", "command-line-utilities"]
5050
[workspace.dependencies]
5151
# ───── Internal Crates ─────
5252
uffs-polars = { path = "crates/uffs-polars" }
53-
uffs-mft = { path = "crates/uffs-mft" }
53+
uffs-mft = { path = "crates/uffs-mft", features = ["zstd"] }
5454
uffs-core = { path = "crates/uffs-core" }
5555
uffs-cli = { path = "crates/uffs-cli" }
5656
uffs-tui = { path = "crates/uffs-tui" }

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.0)
24+
### Benchmark Results (v0.2.1)
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.0** | **18.7 Million** | **~142 seconds** | All disks, fast mode |
36+
| **UFFS v0.2.1** | **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 |

0 commit comments

Comments
 (0)