diff --git a/Cargo.lock b/Cargo.lock index b6729800cb..bcb30653b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1985,7 +1985,7 @@ dependencies = [ [[package]] name = "pathfinder" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "assert_matches", diff --git a/Dockerfile b/Dockerfile index 32dddddbbf..0c4c85de61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # Note that we're explicitly using the Debian bullseye image to make sure we're # compatible with the Python container we'll be copying the pathfinder # executable to. -FROM rust:1.62-bullseye AS rust-builder +FROM rust:1.62.1-bullseye AS rust-builder RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/* @@ -28,7 +28,7 @@ RUN mkdir crates \ && cargo new --lib --vcs none crates/pathfinder \ && cargo new --lib --vcs none crates/load-test -COPY Cargo.toml Cargo.lock . +COPY Cargo.toml Cargo.lock ./ COPY crates/pathfinder/Cargo.toml crates/pathfinder/build.rs crates/pathfinder/ COPY crates/stark_curve/Cargo.toml crates/stark_curve/Cargo.toml diff --git a/crates/pathfinder/Cargo.toml b/crates/pathfinder/Cargo.toml index f81736bbb1..a9fac96949 100644 --- a/crates/pathfinder/Cargo.toml +++ b/crates/pathfinder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pathfinder" -version = "0.2.5" +version = "0.2.6" edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.58"