summaryrefslogtreecommitdiffstats
path: root/src/types.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.rs')
-rw-r--r--src/types.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.rs b/src/types.rs
index 435f21f..1773504 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -7,6 +7,8 @@ pub type TaskRef = String;
pub struct Task {
#[serde(default)]
pub depends: Vec<TaskRef>,
+ #[serde(default)]
+ pub output: Vec<String>,
pub run: String,
}