From 8d798edf3077ca38ed0e3f21446b698ac3b6f81f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 15 May 2022 13:41:03 -0700 Subject: [PATCH] Touch up PR 32 manifest --- fuzz/Cargo.toml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index e815cd2..9056d4b 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -8,17 +8,13 @@ edition = "2018" cargo-fuzz = true [dependencies] -libfuzzer-sys = { version="0.4", features=["arbitrary-derive"] } - -[dependencies.itoa] -path = ".." - -# Prevent this from interfering with workspaces -[workspace] -members = ["."] +itoa = { path = ".." } +libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] } [[bin]] name = "fuzz_itoa" path = "fuzz_targets/fuzz_itoa.rs" test = false doc = false + +[workspace]