chore: bump MSRV to 1.91

Otherwise cargo install wasm-pack doesn't work
This commit is contained in:
Valentin Tolmer
2026-05-25 23:38:35 +02:00
committed by nitnelave
parent ed7484bffb
commit 2dc6178bd0
6 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
# Keep tracking base image # Keep tracking base image
FROM rust:1.89-slim-bookworm FROM rust:1.91-slim-bookworm
# Set needed env path # Set needed env path
ENV PATH="/opt/armv7l-linux-musleabihf-cross/:/opt/armv7l-linux-musleabihf-cross/bin/:/opt/aarch64-linux-musl-cross/:/opt/aarch64-linux-musl-cross/bin/:/opt/x86_64-linux-musl-cross/:/opt/x86_64-linux-musl-cross/bin/:$PATH" ENV PATH="/opt/armv7l-linux-musleabihf-cross/:/opt/armv7l-linux-musleabihf-cross/bin/:/opt/aarch64-linux-musl-cross/:/opt/aarch64-linux-musl-cross/bin/:/opt/x86_64-linux-musl-cross/:/opt/x86_64-linux-musl-cross/bin/:$PATH"

View File

@@ -24,7 +24,7 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
MSRV: "1.89.0" MSRV: "1.91.0"
### CI Docs ### CI Docs

View File

@@ -8,7 +8,7 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
MSRV: "1.89.0" MSRV: "1.91.0"
jobs: jobs:
pre_job: pre_job:

View File

@@ -16,7 +16,7 @@ edition = "2024"
homepage = "https://github.com/lldap/lldap" homepage = "https://github.com/lldap/lldap"
license = "GPL-3.0-only" license = "GPL-3.0-only"
repository = "https://github.com/lldap/lldap" repository = "https://github.com/lldap/lldap"
rust-version = "1.89.0" rust-version = "1.91.0"
[profile.release] [profile.release]
lto = true lto = true

View File

@@ -22,7 +22,7 @@
}; };
# MSRV from the project # MSRV from the project
rustVersion = "1.89.0"; rustVersion = "1.91.0";
# Rust toolchain with required components # Rust toolchain with required components
rustToolchain = pkgs.rust-bin.stable.${rustVersion}.default.override { rustToolchain = pkgs.rust-bin.stable.${rustVersion}.default.override {
@@ -159,4 +159,4 @@
}; };
}; };
}); });
} }

View File

@@ -1,2 +1,2 @@
[toolchain] [toolchain]
channel = "1.89.0" channel = "1.91.0"