windows-helpers 0.4.3

Helpers for the windows crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Note: You can use `cargo publish` flags like `--dry-run` on this script.

$answer = Read-Host "Really publish now? (y/N)"
if ($answer -cne 'y') {
    Write-Host 'Aborting.'
    exit
}

& "$PSScriptRoot\verify.ps1"
if (-not $?) { throw 'Failure' }

cargo publish --features windows_latest_compatible_all @args