oxidelta 0.1.4

VCDIFF (RFC 3284) delta encoder/decoder — Rust reimplementation of xdelta3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
param(
    [string]$OutputDir = "target/bench-reports",
    [string]$BenchName = "criterion_benchmarks"
)

$ErrorActionPreference = "Stop"
New-Item -ItemType Directory -Force -Path $OutputDir | Out-Null

$timestamp = Get-Date -Format "yyyyMMdd-HHmmss"
$outFile = Join-Path $OutputDir "bench-$timestamp.txt"

Write-Host "Running criterion benchmarks..."
cargo bench --bench $BenchName -- --output-format bencher | Tee-Object -FilePath $outFile

Write-Host "Benchmark report saved to $outFile"
Write-Host "Tip: commit this file or upload as CI artifact to track regressions."