summaryrefslogtreecommitdiffstats
path: root/vendor/gix-revision/src/lib.rs
blob: 31d22768cceba292c118dec7e5456be2c6131dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
pub use spec::types::Spec;

pub use gix_revwalk::{graph, Graph, PriorityQueue};