CI: Rust 1.80 (#684)

* Allow Nonce to be unused (Clippy)

* Rust 1.80 stable
This commit is contained in:
gusto 2024-07-31 15:40:32 +03:00 committed by GitHub
parent 91d3558cb2
commit 2148216bda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# BUILD IMAGE ---------------------------------------------------------
FROM rust:1.79.0-slim-bullseye AS builder
FROM rust:1.80.0-slim-bullseye AS builder
WORKDIR /nomos
COPY . .

View File

@ -1,4 +1,4 @@
FROM rust:1.79.0-slim-bullseye
FROM rust:1.80.0-slim-bullseye
LABEL maintainer="augustinas@status.im" \
source="https://github.com/logos-co/nomos-node" \

View File

@ -5,6 +5,7 @@ use cryptarchia_engine::Slot;
use cryptarchia_ledger::LeaderProof;
use serde::{Deserialize, Serialize};
#[allow(dead_code)]
#[derive(Clone, Debug, Eq, PartialEq, Copy)]
pub struct Nonce([u8; 32]);

View File

@ -6,7 +6,7 @@
overlays = [
(import (fetchGit {
url = "https://github.com/oxalica/rust-overlay.git";
rev = "419e7fae2731f41dd9b3e34dfe8802be68558b92";
rev = "8b81b8ed00b20fd57b24adcb390bd96ea81ecd90";
}))
];
}
@ -17,7 +17,7 @@ pkgs.mkShell {
buildInputs = with pkgs; [
pkg-config
rust-bin.stable."1.79.0".default
rust-bin.stable."1.80.0".default
clang_14
llvmPackages_14.libclang
openssl.dev

View File

@ -1,6 +1,6 @@
# BUILD IMAGE ---------------------------------------------------------
FROM rust:1.79.0-slim-bullseye AS builder
FROM rust:1.80.0-slim-bullseye AS builder
WORKDIR /nomos
COPY . .