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 ---------------------------------------------------------
|
# BUILD IMAGE ---------------------------------------------------------
|
||||||
|
|
||||||
FROM rust:1.79.0-slim-bullseye AS builder
|
FROM rust:1.80.0-slim-bullseye AS builder
|
||||||
|
|
||||||
WORKDIR /nomos
|
WORKDIR /nomos
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM rust:1.79.0-slim-bullseye
|
FROM rust:1.80.0-slim-bullseye
|
||||||
|
|
||||||
LABEL maintainer="augustinas@status.im" \
|
LABEL maintainer="augustinas@status.im" \
|
||||||
source="https://github.com/logos-co/nomos-node" \
|
source="https://github.com/logos-co/nomos-node" \
|
||||||
|
|
|
@ -5,6 +5,7 @@ use cryptarchia_engine::Slot;
|
||||||
use cryptarchia_ledger::LeaderProof;
|
use cryptarchia_ledger::LeaderProof;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Clone, Debug, Eq, PartialEq, Copy)]
|
#[derive(Clone, Debug, Eq, PartialEq, Copy)]
|
||||||
pub struct Nonce([u8; 32]);
|
pub struct Nonce([u8; 32]);
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
overlays = [
|
overlays = [
|
||||||
(import (fetchGit {
|
(import (fetchGit {
|
||||||
url = "https://github.com/oxalica/rust-overlay.git";
|
url = "https://github.com/oxalica/rust-overlay.git";
|
||||||
rev = "419e7fae2731f41dd9b3e34dfe8802be68558b92";
|
rev = "8b81b8ed00b20fd57b24adcb390bd96ea81ecd90";
|
||||||
}))
|
}))
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ pkgs.mkShell {
|
||||||
|
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
pkg-config
|
pkg-config
|
||||||
rust-bin.stable."1.79.0".default
|
rust-bin.stable."1.80.0".default
|
||||||
clang_14
|
clang_14
|
||||||
llvmPackages_14.libclang
|
llvmPackages_14.libclang
|
||||||
openssl.dev
|
openssl.dev
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# BUILD IMAGE ---------------------------------------------------------
|
# BUILD IMAGE ---------------------------------------------------------
|
||||||
|
|
||||||
FROM rust:1.79.0-slim-bullseye AS builder
|
FROM rust:1.80.0-slim-bullseye AS builder
|
||||||
|
|
||||||
WORKDIR /nomos
|
WORKDIR /nomos
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
Loading…
Reference in New Issue