diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f907d6..49a1bed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index e3cbf44..1da797c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/README.md b/README.md index b352fd7..463619e 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docker/lavagna-server/Dockerfile b/docker/lavagna-server/Dockerfile index 8349e73..70c6f21 100644 --- a/docker/lavagna-server/Dockerfile +++ b/docker/lavagna-server/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.70 as builder +FROM rust:1.74 as builder WORKDIR /src diff --git a/docker/lavagna-webapp/Dockerfile b/docker/lavagna-webapp/Dockerfile index b5186cd..2cf4d8a 100644 --- a/docker/lavagna-webapp/Dockerfile +++ b/docker/lavagna-webapp/Dockerfile @@ -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