From 40c917c834392e2b5776f65926d1cd19d83beae4 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 5 Sep 2024 09:01:37 +0200 Subject: [PATCH] buid(deps): bump rust req to 1.80 --- Cargo.toml | 2 +- Dockerfile-alpine | 2 +- Dockerfile-debian | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 781858b..cef602e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,5 +4,5 @@ members = ["abci", "proto-compiler", "proto"] [workspace.package] -rust-version = "1.76" +rust-version = "1.80" version = "1.1.0" diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 95882c8..a7037fc 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,6 +1,6 @@ # This is an example Dockerfile, demonstrating build process of rs-tenderdash-abci -FROM rust:alpine3.20 +FROM rust:1.80-alpine3.20 RUN apk add --no-cache \ git \ diff --git a/Dockerfile-debian b/Dockerfile-debian index c4c3ef6..2f6372b 100644 --- a/Dockerfile-debian +++ b/Dockerfile-debian @@ -1,7 +1,7 @@ # This is an example Dockerfile, demonstrating build process of rs-tenderdash-abci # We use Debian base image, as Alpine has some segmentation fault issue -FROM rust:bullseye +FROM rust:1.80-bullseye RUN --mount=type=cache,sharing=locked,target=/var/lib/apt/lists \ --mount=type=cache,sharing=locked,target=/var/cache/apt \