Skip to content

Commit

Permalink
cargo update, use rust 1.81 in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Sep 12, 2024
1 parent adf170d commit 73cb5b2
Show file tree
Hide file tree
Showing 10 changed files with 299 additions and 295 deletions.
122 changes: 64 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions benchmark/providers/evm-hound-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion benchmark/providers/evm-hound-rs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM rust:1.80
FROM rust:1.81
WORKDIR /app
COPY . .
RUN --mount=type=cache,target=./.cargo \
Expand Down
2 changes: 1 addition & 1 deletion benchmark/providers/evmole-js/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM node:22 AS build
COPY ./rust /workdir
WORKDIR /workdir/javascript
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.80
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.81
ENV PATH=/root/.cargo/bin:$PATH
RUN npm ci && npm run build && npm pack

Expand Down
2 changes: 1 addition & 1 deletion benchmark/providers/evmole-py/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM rust:1.80 AS build
FROM rust:1.81 AS build
RUN wget https://github.com/PyO3/maturin/releases/download/v1.7.0/maturin-musl_1.7.0_amd64.deb \
&& apt-get install ./maturin-*.deb
COPY ./rust /workdir
Expand Down
Loading

0 comments on commit 73cb5b2

Please sign in to comment.