summaryrefslogtreecommitdiffstats
path: root/src/recipe.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-06-20 20:57:15 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-06-20 20:57:15 +0200
commitd486a774540c27ba8c06f8cdd3a95326cbdb0028 (patch)
tree4bc02193cd78a9919b34bc821c606c1942d2a1be /src/recipe.rs
parent79a60833a6f7c856818afc0b0ef7a51bbf158072 (diff)
downloadrebel-d486a774540c27ba8c06f8cdd3a95326cbdb0028.tar
rebel-d486a774540c27ba8c06f8cdd3a95326cbdb0028.zip
executor: generate and print task output information
Diffstat (limited to 'src/recipe.rs')
-rw-r--r--src/recipe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recipe.rs b/src/recipe.rs
index 20bca6d..f088e9b 100644
--- a/src/recipe.rs
+++ b/src/recipe.rs
@@ -6,7 +6,7 @@ use crate::types::*;
#[derive(Clone, Debug, Deserialize)]
pub struct Recipe {
- pub tasks: HashMap<String, Task>,
+ pub tasks: HashMap<String, TaskDef>,
}
#[derive(Debug)]