From 8676bb113946613d62b54faa93b30109746ee240 Mon Sep 17 00:00:00 2001 From: Kyryl R Date: Fri, 5 Jun 2026 15:53:02 +0300 Subject: [PATCH] just: use nightly cargo for fuzz tests --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index ea3356f0..6b5e70de 100644 --- a/justfile +++ b/justfile @@ -29,7 +29,7 @@ check: # Run fuzz test for 30 seconds fuzz target: - cargo-fuzz run {{target}} -- -max_total_time=30 -max_len=50 + cargo +nightly fuzz run {{target}} -- -max_total_time=30 -max_len=50 # Check fuzz targets (CI; requires nightly) check_fuzz: @@ -42,7 +42,7 @@ check_fuzz: # Build fuzz tests build_fuzz: - cargo-fuzz check + cargo +nightly fuzz check # Check the standalone fuzz crate compiles check_fuzz_crate: