Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI, Bump MSRV to 1.70.0 #128

Merged
merged 5 commits into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
matrix:
ffmpeg-version: ["release/4.3", "release/5.0", "release/6.0"]
rust: ["nightly", "1.64.0"]
rust: ["nightly", "1.70.0"]
valgrind: ["valgrind", "no valgrind"]
include:
- ffmpeg-version: "release/5.0"
Expand All @@ -123,7 +123,7 @@ jobs:
- valgrind: "valgrind"
ffmpeg-version: "release/4.3"
- valgrind: "valgrind"
rust: "1.64.0"
rust: "1.70.0"
fail-fast: false

steps:
Expand All @@ -137,7 +137,7 @@ jobs:
- name: Install valgrind dependencies
run: |
sudo apt-get -y install libc6-dbg
cargo install cargo-valgrind
cargo install cargo-valgrind --version 2.0.2

- name: Cache valgrind
id: cache
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
build_dynamic_and_test_windows:
strategy:
matrix:
rust: ["nightly", "1.64.0"]
rust: ["nightly", "1.70.0"]
fail-fast: false
runs-on: windows-latest
needs: build_dynamic_and_test_windows_pre
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation = "https://docs.rs/rsmpeg"
repository = "https://github.com/larksuite/rsmpeg"
readme = "README.md"
exclude = ["tests/*", "examples/*", "utils/*"]
rust-version = "1.64.0"
rust-version = "1.70.0"

[dependencies]
rusty_ffmpeg = "0.13.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Supported FFmpeg versions are:
- `5.*`(Enabled by feature `ffmpeg5`)
- `6.*`(Enabled by feature `ffmpeg6`).

Minimum Supported Rust Version is 1.64.0(Stable channel).
Minimum Supported Rust Version is 1.70.0(Stable channel).

## Getting started

Expand Down
Loading