Skip to content

Commit 7576d58

Browse files
committed
chore: development v0.1.30 - comprehensive testing complete [auto-commit]
1 parent af73b62 commit 7576d58

File tree

14 files changed

+1870
-14
lines changed

14 files changed

+1870
-14
lines changed

Cargo.lock

Lines changed: 38 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: 1 addition & 1 deletion
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.1.29"
35+
version = "0.1.30"
3636
edition = "2024"
3737
rust-version = "1.85"
3838
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"

crates/uffs-mft/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ tracing.workspace = true
5353
tracing-subscriber.workspace = true
5454
tracing-appender.workspace = true
5555
dirs-next.workspace = true
56+
chrono.workspace = true
57+
hostname = "0.4.2"
58+
num_cpus.workspace = true
5659

5760
# Windows APIs (Windows only)
5861
[target.'cfg(windows)'.dependencies]

crates/uffs-mft/src/lib.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ use uffs_polars as _;
7070
use windows as _;
7171
// Binary dependencies (used by src/main.rs)
7272
use {
73-
anyhow as _, clap as _, dirs_next as _, indicatif as _, tokio as _, tracing as _,
74-
tracing_appender as _, tracing_subscriber as _,
73+
anyhow as _, chrono as _, clap as _, dirs_next as _, hostname as _, indicatif as _,
74+
num_cpus as _, tokio as _, tracing as _, tracing_appender as _, tracing_subscriber as _,
7575
};
7676

7777
// ============================================================================
@@ -128,6 +128,9 @@ pub use raw::{
128128
LoadRawOptions, RawMftData, RawMftHeader, SaveRawOptions, load_raw_mft, load_raw_mft_header,
129129
save_raw_mft,
130130
};
131-
pub use reader::{DriveReadResult, MftProgress, MftReader, MultiDriveMftReader};
131+
pub use reader::{
132+
BenchmarkResult, DriveCharacteristics, DriveReadResult, MftProgress, MftReader,
133+
MultiDriveMftReader, PhaseTimings,
134+
};
132135
// Re-export Polars types for convenience
133136
pub use uffs_polars::{DataFrame, IntoLazy, LazyFrame, col, lit};

0 commit comments

Comments
 (0)