Skip to content

Commit

Permalink
Bump Rust requirement to 1.78
Browse files Browse the repository at this point in the history
Changelog: other
  • Loading branch information
yorickpeterse committed Jul 18, 2024
1 parent 0384162 commit 63086b2
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ci/docker/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:trixie

ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL sparse
ENV LLVM_VERSION 17
ENV RUST_VERSION 1.70
ENV RUST_VERSION 1.78

ENV PATH /opt/cargo/bin:$PATH
ENV CARGO_HOME /opt/cargo
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora:40

ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL sparse
ENV LLVM_VERSION 17
ENV RUST_VERSION 1.70
ENV RUST_VERSION 1.78

ENV PATH /opt/cargo/bin:$PATH
ENV CARGO_HOME /opt/cargo
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:24.04

ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL sparse
ENV LLVM_VERSION 17
ENV RUST_VERSION 1.70
ENV RUST_VERSION 1.78

ENV PATH /opt/cargo/bin:$PATH
ENV CARGO_HOME /opt/cargo
Expand Down
2 changes: 1 addition & 1 deletion ci/freebsd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

RUST_VERSION='1.70'
RUST_VERSION='1.78'

echo "::group::Installing Rust"
curl --proto '=https' \
Expand Down
2 changes: 1 addition & 1 deletion ci/mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

LLVM_VERSION='17'
RUST_VERSION='1.70'
RUST_VERSION='1.78'

echo "::group::Installing Homebrew packages"
brew install llvm@${LLVM_VERSION} rustup-init
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = '1.70.0'
msrv = '1.78'
2 changes: 1 addition & 1 deletion docs/source/setup/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ isn't supported.
## Requirements

- A 64-bits little-endian platform
- Rust 1.70 or newer
- Rust 1.78 or newer
- LLVM 17
- A C compiler such as [GCC](https://gcc.gnu.org/) or
[clang](https://clang.llvm.org/)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/setup/ivm.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ is written in Rust.

## Requirements

- Rust 1.70 or newer
- Rust 1.78 or newer
- The [dependencies](../installation#dependencies) necessary to build Inko from
source

Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.70.0"
components = ["rustfmt", "rust-src", "clippy"]
channel = "1.78"
components = ["rustfmt", "rust-src", "clippy", "rust-analyzer"]

0 comments on commit 63086b2

Please sign in to comment.