Rust 1.77

This commit is contained in:
Luke Parker 2024-03-21 20:05:34 -04:00
parent c706d8664a
commit 84cee06ac1
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
FROM --platform=linux/amd64 rust:1.76.0-slim-bookworm as builder
FROM --platform=linux/amd64 rust:1.77.0-slim-bookworm as builder
# Move to a Debian package snapshot
RUN rm -rf /etc/apt/sources.list.d/debian.sources && \

View file

@ -129,7 +129,7 @@ fn build_serai_service(release: bool, features: &str, package: &str) -> String {
format!(
r#"
FROM rust:1.76-slim-bookworm as builder
FROM rust:1.77-slim-bookworm as builder
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "1.76"
channel = "1.77"
targets = ["wasm32-unknown-unknown"]
profile = "minimal"
components = ["rust-src", "rustfmt", "clippy"]