param(
[Parameter(Mandatory = $true)]
[string[]]$Repositories,
[int]$MaxCount = 1000,
[int]$Iterations = 50
)
$ErrorActionPreference = "Stop"
$paths = $Repositories | ForEach-Object {
(Resolve-Path -LiteralPath $_).Path
}
cargo run --release --example benchmark_cross_repo -- `
$MaxCount $Iterations $paths