From b8ac0784f2a2daf7ab143789cee7844c195783ea Mon Sep 17 00:00:00 2001 From: Carter Canedy Date: Tue, 21 Jan 2025 13:50:20 -0800 Subject: [PATCH] remove post-task dispatching from feature scope --- crates/task/src/task_template.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/task/src/task_template.rs b/crates/task/src/task_template.rs index 4233f60a91032..15ecc78f74115 100644 --- a/crates/task/src/task_template.rs +++ b/crates/task/src/task_template.rs @@ -65,9 +65,6 @@ pub struct TaskTemplate { /// A list of other tasks to be run before executing this task, referenced by label #[serde(default)] pub pre: Vec, - /// A list of other tasks to be run after executing this task, referenced by label - #[serde(default)] - pub post: Vec, /// Which shell to use when spawning the task. #[serde(default)] pub shell: Shell,