summaryrefslogtreecommitdiffstats
path: root/src/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/task.rs')
-rw-r--r--src/task.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/task.rs b/src/task.rs
index 594e849..fe9572c 100644
--- a/src/task.rs
+++ b/src/task.rs
@@ -2,10 +2,11 @@ use std::collections::{HashMap, HashSet};
use serde::Deserialize;
+use common::{string_hash::StringHash, types::TaskID};
+
use crate::{
args::{ArgMapping, ArgType},
recipe,
- types::{StringHash, TaskID},
};
#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Hash, Default)]