neomake 0.3.1

Yet another task runner as make alternative, inspired by GitLab pipelines.
use thiserror::Error;

#[derive(Debug, Error)]
pub(crate) enum Error {
    #[error("generic")]
    Generic(#[from] Box<dyn std::error::Error+Sync+Send>),

    #[error("argument")]
    Argument(String),
    #[error("missing argument")]
    MissingArgument(String),
    #[error("experimental command")]
    ExperimentalCommand,
    #[error("child process")]
    ChildProcess(String),
    #[error("task chain recursion")]
    TaskChainRecursion,
    #[error("unknown command")]
    UnknownCommand,
    #[error("version compatibility")]
    VersionCompatibility(String),
}