CI: Rust 1.80 (#684)
* Allow Nonce to be unused (Clippy) * Rust 1.80 stable
This commit is contained in:
parent
91d3558cb2
commit
2148216bda
|
@ -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 . .
|
||||
|
|
|
@ -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" \
|
||||
|
|
|
@ -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]);
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 . .
|
||||
|
|
Loading…
Reference in New Issue