Skip to content

Commit 77166f5

Browse files
committed
fix: benchmark script - remove erroneous 'search' subcommand, update rustls-webpki
1 parent 49a38da commit 77166f5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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.48"
39+
version = "0.3.49"
4040
edition = "2024"
4141
rust-version = "1.85"
4242
license = "MPL-2.0 OR LicenseRef-UFFS-Commercial"

scripts/windows/benchmark-cold.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ function RunDriveBench($driveLetter) {
6060
Write-Host "📁 DRIVE ${driveLetter}:" -ForegroundColor Yellow
6161
Write-Host "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" -ForegroundColor DarkGray
6262
if (-not $CppOnly) {
63-
BenchCold "Rust (cold)" { & $UFFS search "$Pattern" --drive $driveLetter }
63+
# Note: no "search" subcommand - pattern is the default action
64+
BenchCold "Rust (cold)" { & $UFFS "$Pattern" --drive $driveLetter }
6465
}
6566
if (-not $RustOnly -and (Test-Path $UFFS_CPP)) {
6667
BenchCold "C++ (cold)" { & $UFFS_CPP "$Pattern" --drives=$driveLetter }
@@ -72,7 +73,8 @@ function RunAllDrivesBench() {
7273
Write-Host "🌐 ALL DRIVES:" -ForegroundColor Yellow
7374
Write-Host "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" -ForegroundColor DarkGray
7475
if (-not $CppOnly) {
75-
BenchCold "Rust (cold)" { & $UFFS search "$Pattern" }
76+
# Note: no "search" subcommand - pattern is the default action
77+
BenchCold "Rust (cold)" { & $UFFS "$Pattern" }
7678
}
7779
if (-not $RustOnly -and (Test-Path $UFFS_CPP)) {
7880
BenchCold "C++ (cold)" { & $UFFS_CPP "$Pattern" }

0 commit comments

Comments
 (0)