Skip to content

Commit

Permalink
Use Rust 1.79.0
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Jul 4, 2024
1 parent b5fbeb0 commit d1670af
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
target: aarch64-unknown-linux-gnu
override: true
- name: cargo test (for generating dialogs with php)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-armv7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
target: armv7-unknown-linux-gnueabihf
override: true
- name: cargo test (for generating dialogs with php)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo check
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo build
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- run: rustup component add rustfmt
- name: cargo fmt
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- run: rustup component add clippy
- name: cargo clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
target: aarch64-apple-darwin
override: true
- name: Set SDKROOT
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo check
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo build
uses: actions-rs/cargo@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0-${{ matrix.toolchain-suffix }}
toolchain: 1.79.0-${{ matrix.toolchain-suffix }}
target: ${{ matrix.target }}
override: true
# Install OS dependencies (Linux/macOS only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-i686.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0-i686-pc-windows-msvc
toolchain: 1.79.0-i686-pc-windows-msvc
target: i686-pc-windows-msvc
override: true
- name: cargo build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo check
uses: actions-rs/cargo@v1
Expand All @@ -57,7 +57,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.76.0
toolchain: 1.79.0
override: true
- name: cargo build
uses: actions-rs/cargo@v1
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ On Windows, it's necessary to use the MSVC (Microsoft Visual Studio C++) toolcha
+
[source,shell]
----
rustup default 1.76.0-x86_64-pc-windows-msvc
rustup default 1.79.0-x86_64-pc-windows-msvc
----
. Download and install https://git-scm.com/download/win[Git for Windows]
. Clone the ReaLearn Git repository
Expand Down Expand Up @@ -155,7 +155,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (defau
source $HOME/.cargo/env
# Set the correct toolchain default
rustup default 1.76.0-x86_64-unknown-linux-gnu
rustup default 1.79.0-x86_64-unknown-linux-gnu
# Clone ReaLearn repository
git clone https://github.com/helgoboss/realearn.git
Expand Down Expand Up @@ -198,7 +198,7 @@ The Rust installation script should provide you with the necessary instructions
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (default)
source $HOME/.cargo/env
rustup default 1.76.0-x86_64-apple-darwin
rustup default 1.79.0-x86_64-apple-darwin
# Clone ReaLearn
cd Downloads
Expand Down
2 changes: 1 addition & 1 deletion main/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Benjamin Klum <[email protected]>"]
edition = "2021"
build = "build.rs"
license = "GPL-3.0"
rust-version = "1.76.0"
rust-version = "1.79.0"
publish = false

[features]
Expand Down

0 comments on commit d1670af

Please sign in to comment.