summaryrefslogtreecommitdiffstats
path: root/vendor/gix/src/tag.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix/src/tag.rs')
-rw-r--r--vendor/gix/src/tag.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/gix/src/tag.rs b/vendor/gix/src/tag.rs
new file mode 100644
index 000000000..84af3b43a
--- /dev/null
+++ b/vendor/gix/src/tag.rs
@@ -0,0 +1,16 @@
+//!
+mod error {
+
+ /// The error returned by [`tag(…)`][crate::Repository::tag()].
+ #[derive(Debug, thiserror::Error)]
+ #[allow(missing_docs)]
+ pub enum Error {
+ #[error(transparent)]
+ ReferenceNameValidation(#[from] gix_ref::name::Error),
+ #[error(transparent)]
+ WriteObject(#[from] crate::object::write::Error),
+ #[error(transparent)]
+ ReferenceEdit(#[from] crate::reference::edit::Error),
+ }
+}
+pub use error::Error;