mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 09:31:06 +00:00
18 lines
397 B
PowerShell
18 lines
397 B
PowerShell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
|
|
|
rustup --version
|
|
rustc --version
|
|
cargo --version
|
|
|
|
if ("$env:RUST_VERSION" -eq "1.71.1") {
|
|
cargo install --locked cargo-c --version 0.9.26+cargo-0.74
|
|
} else {
|
|
cargo install --locked cargo-c --version 0.10.3+cargo-0.81
|
|
}
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to install cargo-c"
|
|
Exit 1
|
|
}
|
|
|
|
cargo-cbuild --version
|