From 0e2834eb5a0ed0e4f4d18955fd83e6a0a24094f6 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Tue, 17 Dec 2024 17:16:12 +0100 Subject: [PATCH] Fix MSRV workflow --- .github/workflows/rust.yml | 2 +- code/crates/engine/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0bf041937..755732670 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -141,7 +141,7 @@ jobs: with: tool: cargo-msrv - name: Check MSRV - run: cargo msrv verify --manifest-path crates/consensus/Cargo.toml --output-format minimal -- cargo check --all-features + run: cargo msrv verify --manifest-path crates/engine/Cargo.toml --output-format minimal -- cargo check --all-features standalone: name: Standalone diff --git a/code/crates/engine/Cargo.toml b/code/crates/engine/Cargo.toml index 2c16b3e0c..06a34f202 100644 --- a/code/crates/engine/Cargo.toml +++ b/code/crates/engine/Cargo.toml @@ -4,6 +4,7 @@ version.workspace = true edition.workspace = true repository.workspace = true license.workspace = true +rust-version.workspace = true publish.workspace = true [lints]