Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85
toolchain: 1.90

- name: Set up Go
uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.extproc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the Rust library using Makefile
FROM rust:1.85 AS rust-builder
FROM rust:1.90 AS rust-builder

# Install make and other build dependencies including cross-compilation tools
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.extproc.cross
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Cross-compilation optimized Dockerfile for ARM64
FROM --platform=linux/amd64 rust:1.85 AS rust-cross-builder
FROM --platform=linux/amd64 rust:1.90 AS rust-cross-builder

# Install cross-compilation dependencies
RUN dpkg --add-architecture arm64 && \
Expand Down
Loading