From e185fe46df0b098f8fadefa2734fe6a14e6de9b9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 10 Jan 2024 10:53:58 +1100 Subject: [PATCH] just: Lint with nightly toolchain Recently we switched to using the nightly toolchain to lint, update the `justfile` appropriately. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index b52728ca..5f8ef24f 100644 --- a/justfile +++ b/justfile @@ -11,7 +11,7 @@ check: # Lint everything. lint: - cargo clippy --workspace --all-targets --all-features -- --deny warnings + cargo +nightly clippy --workspace --all-targets --all-features -- --deny warnings # Check the formatting format: