From 6c1ac1b059925c3635f6b5cb73d49c2214531eaa Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 5 Sep 2025 23:20:41 +0200 Subject: [PATCH] fuzz: fix the Cargo.toml to publish uufuzz --- fuzz/uufuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/uufuzz/Cargo.toml b/fuzz/uufuzz/Cargo.toml index 971d30265..14a670886 100644 --- a/fuzz/uufuzz/Cargo.toml +++ b/fuzz/uufuzz/Cargo.toml @@ -12,5 +12,5 @@ console = "0.16.0" libc = "0.2.153" rand = { version = "0.9.0", features = ["small_rng"] } similar = "2.5.0" -uucore = { path = "../../src/uucore", features = ["parser"] } +uucore = { version = "0.1.0", path = "../../src/uucore", features = ["parser"] } tempfile = "3.15.0"