summaryrefslogtreecommitdiffstats
path: root/vendor/gix-revision/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-revision/src/lib.rs')
-rw-r--r--vendor/gix-revision/src/lib.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/gix-revision/src/lib.rs b/vendor/gix-revision/src/lib.rs
new file mode 100644
index 000000000..ef273b5ae
--- /dev/null
+++ b/vendor/gix-revision/src/lib.rs
@@ -0,0 +1,19 @@
+//! Interact with git revisions by parsing them from rev-specs and describing them in terms of reference names.
+//!
+//! ## Feature Flags
+#![cfg_attr(
+ feature = "document-features",
+ cfg_attr(doc, doc = ::document_features::document_features!())
+)]
+#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
+#![deny(missing_docs, rust_2018_idioms, unsafe_code)]
+
+///
+pub mod describe;
+pub use describe::function::describe;
+
+///
+pub mod spec;
+
+mod types;
+pub use types::Spec;