From d3b6350894ced20de0d50093ef90c7debac2dd34 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Mon, 13 Jan 2025 00:14:24 -0700 Subject: [PATCH] more comments --- tools/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/src/main.rs b/tools/src/main.rs index 73d4bbf..3b29a83 100644 --- a/tools/src/main.rs +++ b/tools/src/main.rs @@ -51,6 +51,13 @@ struct Recipe { dependencies: Dependencies, action: Action, + + /// If a recipe has no `[outputs]`, we assume it produces 1x of the + /// thing identified by the name of the recipe. + /// + /// FIXME: Or is that always the case, and we should have no outputs + /// section? None of the recipes we've been doodling around with + /// have anything like byproducts or waste streams... outputs: Option>, }