chore: initial sanitized public snapshot

This commit is contained in:
Aria2 Rust Pro Contributors
2026-07-18 16:01:12 +08:00
commit 7c6b6a3746
321 changed files with 76896 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
[CmdletBinding()]
param(
[switch]$IncludeReleaseSmoke
)
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
$repoRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
$xtaskManifest = Join-Path $repoRoot "xtask\Cargo.toml"
$arguments = @(
"cargo",
"run",
"--manifest-path",
$xtaskManifest,
"--",
"testing",
"strict-sweep"
)
if ($IncludeReleaseSmoke) {
$arguments += "--include-release-smoke"
}
rtk @arguments