summaryrefslogtreecommitdiff
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/errors.rs b/src/errors.rs
index 282b5c5..0652adf 100644
--- a/src/errors.rs
+++ b/src/errors.rs
@@ -26,6 +26,9 @@ pub enum BumperError {
#[error("'project' in Cargo.toml is not a table")]
ProjectNotTable,
+ #[error("Cargo.toml doesn't specify a package name")]
+ UnnamedProject,
+
#[error("Failed to run git: {0}")]
GitInvoke(#[source] std::io::Error),