Skip to content

Commit f660cb8

Browse files
committed
chore: development v0.2.36 - comprehensive testing complete [auto-commit]
1 parent 5332526 commit f660cb8

22 files changed

+1205
-50
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ build/.ttapi-workflow-state.json
139139
# Cargo metadata output (machine-specific, auto-generated)
140140
metadata.json
141141

142-
# Large trial run output files (too big for GitHub)
143-
docs/trial_runs/UltraFastFileSearch/*.txt
142+
# Large trial run artifacts (can be very large, not for Git)
143+
docs/trial_runs/
144144

145145
# Profiling bundles (contain large binaries and profile data)
146146
bundles/

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ members = [
2323
"crates/uffs-mft", # 📦 MFT reading → Polars DataFrame
2424
"crates/uffs-core", # 🎯 Query engine using Polars lazy API
2525
"crates/uffs-cli", # 🖥️ Command-line interface
26+
"crates/uffs-diag", # 🔬 Diagnostic / forensic tools (offline)
2627
"crates/uffs-tui", # 📟 Terminal UI
2728
"crates/uffs-gui", # 🪟 Graphical UI (future)
2829
"crates/uffs-legacy", # 📜 Legacy code (reference only)
@@ -32,7 +33,7 @@ members = [
3233
# Workspace Package Metadata (inherited by all crates)
3334
# ─────────────────────────────────────────────────────────────────────────────
3435
[workspace.package]
35-
version = "0.2.35"
36+
version = "0.2.36"
3637
edition = "2024"
3738
rust-version = "1.85"
3839
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"
@@ -53,6 +54,7 @@ uffs-polars = { path = "crates/uffs-polars" }
5354
uffs-mft = { path = "crates/uffs-mft", features = ["zstd"] }
5455
uffs-core = { path = "crates/uffs-core" }
5556
uffs-cli = { path = "crates/uffs-cli" }
57+
uffs-diag = { path = "crates/uffs-diag" }
5658
uffs-tui = { path = "crates/uffs-tui" }
5759

5860
# ───── Polars (via facade crate for compilation isolation) ─────

0 commit comments

Comments
 (0)