Skip to content

Commit

Permalink
Fix CI, Bump MSRV to 1.70.0 (#128)
Browse files Browse the repository at this point in the history
* ci: Lock cargo-valgrind to 1.3.0

* Fix cargo valgrind

* Bump msrv to 1.65.0

* Bump MSRV to 1.70.0

* Lock cargo-valgrind to 2.0.2 due to MSRV
  • Loading branch information
ldm0 authored Dec 29, 2023
1 parent ccec8b2 commit 6fe3768
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit 6fe3768

Please sign in to comment.