mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-09-02 18:03:50 +00:00
Update minimum supported Rust version to 1.83
See https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2199#note_2865477 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1713>
This commit is contained in:
parent
95f903b2d4
commit
3e111132a4
4 changed files with 12 additions and 12 deletions
|
@ -112,7 +112,7 @@ categories = ["api-bindings", "multimedia"]
|
|||
repository = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
||||
homepage = "https://gstreamer.freedesktop.org"
|
||||
edition = "2021"
|
||||
rust-version = "1.80"
|
||||
rust-version = "1.83"
|
||||
|
||||
[workspace.dependencies]
|
||||
gio = { git = "https://github.com/gtk-rs/gtk-rs-core", branch = "main" }
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
variables:
|
||||
GST_RS_IMG_TAG: "2025-04-07.0"
|
||||
GST_RS_IMG_WINDOWS_TAG: "2025-04-07.0"
|
||||
GST_RS_IMG_TAG: "2025-04-14.0"
|
||||
GST_RS_IMG_WINDOWS_TAG: "2025-04-14.0"
|
||||
GST_RS_STABLE: "1.86.0"
|
||||
GST_RS_MSRV: "1.80.1"
|
||||
GST_RS_MSRV: "1.83.0"
|
||||
# The branch we use to build GStreamer from in the docker images
|
||||
# Ex. main, 1.24, my-test-branch
|
||||
GST_UPSTREAM_BRANCH: 'main'
|
||||
|
|
|
@ -35,14 +35,14 @@ if [ "$RUST_IMAGE_FULL" = "1" ]; then
|
|||
cargo install --locked grcov
|
||||
fi
|
||||
|
||||
if [ "$RUST_VERSION" = "1.80.1" ]; then
|
||||
cargo install --locked cargo-nextest@0.9.85
|
||||
if [ "$RUST_VERSION" = "1.83.0" ]; then
|
||||
cargo install --locked cargo-nextest@0.9.94
|
||||
else
|
||||
cargo install --locked cargo-nextest
|
||||
fi
|
||||
|
||||
if [ "$RUST_VERSION" = "1.80.1" ]; then
|
||||
cargo install --locked cargo-c --version 0.10.5+cargo-0.83
|
||||
if [ "$RUST_VERSION" = "1.83.0" ]; then
|
||||
cargo install --locked cargo-c --version 0.10.11+cargo-0.86.0
|
||||
else
|
||||
cargo install --locked cargo-c --version 0.10.12+cargo-0.87
|
||||
fi
|
||||
|
|
|
@ -6,8 +6,8 @@ rustup --version
|
|||
rustc --version
|
||||
cargo --version
|
||||
|
||||
if ("$env:RUST_VERSION" -eq "1.80.1") {
|
||||
cargo install --locked cargo-c --version 0.10.5+cargo-0.93
|
||||
if ("$env:RUST_VERSION" -eq "1.83.0") {
|
||||
cargo install --locked cargo-c --version 0.10.11+cargo-0.86.0
|
||||
} else {
|
||||
cargo install --locked cargo-c --version 0.10.12+cargo-0.87
|
||||
}
|
||||
|
@ -17,8 +17,8 @@ if (!$?) {
|
|||
Exit 1
|
||||
}
|
||||
|
||||
if ("$env:RUST_VERSION" -eq "1.80.1") {
|
||||
cargo install --locked cargo-nextest@0.9.85
|
||||
if ("$env:RUST_VERSION" -eq "1.83.0") {
|
||||
cargo install --locked cargo-nextest@0.9.94
|
||||
} else {
|
||||
cargo install --locked cargo-nextest
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue