Skip to content

Commit

Permalink
Update MSRV to 1.74
Browse files Browse the repository at this point in the history
Needed for updated version of clap_lex
  • Loading branch information
alepez committed Feb 9, 2024
1 parent 08e20d4 commit 19fead1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# We test lavagna on a pinned version of Rust, along with the moving
# targets of 'stable', 'beta', 'nightly'.
rust_version:
- 1.70.0
- 1.74.0
- stable
- beta
- nightly
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ repository = "https://github.com/alepez/lavagna"
readme = "README.md"
license = "MIT OR Apache-2.0"
include = ["src", "assets", "LICENSE*", "README.md"]
rust-version = "1.74"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.bevy]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ and Linux.](https://github.com/alepez/lavagna/releases/latest)

If you're a **Rust programmer**, *lavagna* can be installed with `cargo`.

- Note that the minimum supported version of Rust for *lavagna* is 1.61.0,
- Note that the minimum supported version of Rust for *lavagna* is 1.74,
although *lavagna* may work with older versions.

To install from sources:
Expand Down
2 changes: 1 addition & 1 deletion docker/lavagna-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70 as builder
FROM rust:1.74 as builder

WORKDIR /src

Expand Down
2 changes: 1 addition & 1 deletion docker/lavagna-webapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
################################################################################
# Build the web app

FROM rust:1.70 as builder
FROM rust:1.74 as builder

RUN rustup target add wasm32-unknown-unknown && \
cargo install -f wasm-bindgen-cli
Expand Down

0 comments on commit 19fead1

Please sign in to comment.