From ac6a144d77af98324f801b9ac265ac31239e7ea6 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 5 Sep 2024 10:01:13 +0200 Subject: [PATCH] build: rust 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 5e55a09..b550b2b 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:1.76-alpine3.19 +FROM rust:1.80-alpine3.20 SHELL ["/bin/bash", "-exc"] diff --git a/Dockerfile-debian b/Dockerfile-debian index 57a9a6d..44f4cc3 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:1.76.0-bookworm +FROM rust:1.80.0-bookworm SHELL ["/bin/bash", "-exc"]