usestd::collections::HashMap;usestd::error;/// Alias the result type for convenience. We simply return a dynamic error as these should
/// be displayed to the user as they are.
pub(crate)typeDynErrResult<T>=Result<T, Box<dyn error::Error>>;/// Extra args passed that will be mapped to the task.
pub(crate)typeTaskArgs=HashMap<String, Vec<String>>;