From dfa7467b1e4e570b0a3538e6380d9e4401206df0 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Thu, 18 Sep 2025 07:56:17 +0000 Subject: [PATCH] chore: do not check the MSRV Signed-off-by: Awiteb --- flake.nix | 3 ++- justfile | 8 +------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 759ae57..c57ca7a 100644 --- a/flake.nix +++ b/flake.nix @@ -20,9 +20,9 @@ in with pkgs; { + # n34 development environment devShells.default = mkShell { packages = [ - cargo-msrv dbus git-cliff just @@ -39,6 +39,7 @@ ]; }; + # Build n34 packages.default = let manifest = (pkgs.lib.importTOML ./Cargo.toml).package; diff --git a/justfile b/justfile index 24d6ca9..f60a302 100644 --- a/justfile +++ b/justfile @@ -32,7 +32,7 @@ _default: @{{JUST_EXECUTABLE}} --list-heading "{{header}}" --list # Run the CI -ci: && msrv _done_ci +ci: && _done_ci echo "๐Ÿ”จ Building n34..." cargo build -q echo "๐Ÿ” Checking code formatting..." @@ -43,12 +43,6 @@ ci: && msrv _done_ci echo "๐Ÿงช Running tests..." cargo test -q -# Check that the current MSRV is correct -msrv: - echo "๐Ÿ”ง Verifying MSRV..." - cargo-msrv verify - echo "โœ… MSRV verification passed" - _done_ci: echo "๐ŸŽ‰ CI pipeline completed successfully"