From 84978c695647080fb0de167a5ed51d21d1b225ba Mon Sep 17 00:00:00 2001 From: andrewdavidmackenzie Date: Fri, 22 Nov 2024 10:37:24 +0000 Subject: [PATCH] Add a default-members entry to Cargo.toml, so you can use "cargo run" without having to specify the "wild" binary each time. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 6ce786c4..18122e30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = ["linker-diff", "linker-layout", "linker-trace", "linker-utils", "wild", "wild_lib"] +default-members = ["wild"] resolver = "2"