From ff20d332c23c7911b5fb2a370b3ed34869f16bbc Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 17 Mar 2022 14:16:36 +0100 Subject: [PATCH] Make `cargo run` work again I thought I'd tested this, but obviously I didn't. This will let Cargo know, that `cargo run` should run `fj-app`. Please note that the app itself is still broken, as it doesn't understand where the `target/` directory is in the workspace. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index f25cd77d8..07cc0b8bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,4 @@ members = [ "release-operator", ] +default-members = ["fj-app"]