neomake 0.2.7

Yet another task runner as make alternative, inspired by GitLab pipelines.
#[macro_export]
macro_rules! make_error {
    ($name:ident) => {
        #[derive(Debug, Clone)]
        pub struct $name {
            details: String,
        }

        impl $name {
            pub fn new(details: &str) -> Self {
                Self {
                    details: details.to_owned(),
                }
            }
        }

        impl std::fmt::Display for $name {
            fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                f.write_str(&self.details)
            }
        }

        impl std::error::Error for $name {}
    };
}

make_error!(ChildProcessError);
make_error!(TaskChainRecursion);
make_error!(UnknownCommandError);
make_error!(ExperimentalCommandError);
make_error!(MissingArgumentError);
make_error!(ArgumentError);
make_error!(VersionCompatibilityError);