Skip to content

Commit ff611f1

Browse files
author
admin
committed
bindgen v0.71.1 requires rustc 1.70.0 or newer,now upgrade 1.65.0 to rustc 1.70.0 or newer
1 parent a4ee3c7 commit ff611f1

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ jobs:
201201
echo "PKG_CONFIG_PATH=$PWD/ffmpeg-libs/lib/amd64/pkgconfig" >> "$GITHUB_ENV"
202202
echo "LD_LIBRARY_PATH=$PWD/ffmpeg-libs" >> "$GITHUB_ENV"
203203
# rust-version from Cargo.toml
204-
- name: Install Rust 1.65.0
205-
uses: dtolnay/rust-toolchain@1.65.0
204+
- name: Install Rust 1.70.0
205+
uses: dtolnay/rust-toolchain@1.70.0
206206
- uses: Swatinem/rust-cache@v2
207207
with:
208208
prefix-key: "v2-rust"

Cargo.lock.MSRV

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = ["multimedia"]
1616
include = ["LICENSE", "build.rs", "src/"]
1717

1818
# When changing MSRV: Also update build.yml and README.md
19-
rust-version = "1.65.0"
19+
rust-version = "1.70.0"
2020

2121
[dependencies]
2222
libc = "0.2"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you have significant, demonstrable experience in Rust and multimedia-related
2727

2828
## Minimum supported Rust version (MSRV)
2929

30-
Both `ffmpeg-the-third` and `ffmpeg-sys-the-third` currently require a Rust version of 1.65.0 or higher. Increases in MSRV will result in a semver MINOR version increase.
30+
Both `ffmpeg-the-third` and `ffmpeg-sys-the-third` currently require a Rust version of 1.70.0 or higher. Increases in MSRV will result in a semver MINOR version increase.
3131

3232
If you are having issues compiling this crate on your version of Rust, there are two tools you can use to help find MSRV-compatible dependency versions:
3333

ffmpeg-sys-third/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords = ["audio", "video"]
1919
categories = ["multimedia", "external-ffi-bindings"]
2020

2121
# When changing MSRV: Also update build.yml and README.md
22-
rust-version = "1.65.0"
22+
rust-version = "1.70.0"
2323

2424
[lib]
2525
# Disable doctests as a workaround for https://github.com/rust-lang/rust-bindgen/issues/1313

0 commit comments

Comments
 (0)