supergit 0.2.1

A strongly typed, read-only representation of a git repository
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! File tree abstractions
//!
//! The supergit files API is split into two parts: `FileTree`, which
//! is mostly used internally and only exposed to allow external tools
//! to rely on the same indexing mechanism as supergit, and
//! `Explorer`, which is a high-level API for loading trees for
//! specific commits.
//!

pub(self) mod tree_utils;
mod tree;
pub use tree::{FileTree, TreeEntry, EntryType};

mod explorer;
pub use explorer::{Explorer, Yield, YieldType};