Skip to content

Commit

Permalink
Rust 1.76
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 9, 2024
1 parent 337e54c commit 29633ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions orchestration/runtime/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM --platform=linux/amd64 rust:1.75.0-slim-bookworm as builder
FROM --platform=linux/amd64 rust:1.76.0-slim-bookworm as builder

# Move to a Debian package snapshot
RUN rm -rf /etc/apt/sources.list.d/debian.sources && \
rm -rf /var/lib/apt/lists/* && \
echo "deb [arch=amd64] http://snapshot.debian.org/archive/debian/20231201T000000Z bookworm main" > /etc/apt/sources.list && \
echo "deb [arch=amd64] http://snapshot.debian.org/archive/debian/20240201T000000Z bookworm main" > /etc/apt/sources.list && \
apt update

# Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion orchestration/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn build_serai_service(release: bool, features: &str, package: &str) -> String {

format!(
r#"
FROM rust:1.75-slim-bookworm as builder
FROM rust:1.76-slim-bookworm as builder
COPY --from=mimalloc-debian libmimalloc.so /usr/lib
RUN echo "/usr/lib/libmimalloc.so" >> /etc/ld.so.preload
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.75"
channel = "1.76"
targets = ["wasm32-unknown-unknown"]
profile = "minimal"
components = ["rust-src", "rustfmt", "clippy"]

0 comments on commit 29633ad

Please sign in to comment.