1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! `radicle-surf` is a library to help users explore a Git repository with
//! ease. It supports browsing a repository via the concept of files and
//! directories, or via blobs and trees in a git fashion. With the additional
//! support of [`diff::Diff`] and [`History`], this library can be used to build
//! an intuitive UI for any Git repository.
//!
//! The main entry point of the library API is [`Repository`].
//!
//! Let's start surfing!
//!
//! ## Serialization with feature `serde`
//!
//! Many types in this crate support serialization using [`Serde`][serde]
//! through the `serde` feature flag for this crate.
//!
//! [serde]: https://crates.io/crates/serde
extern crate radicle_git_ext as git_ext;
/// Re-exports.
pub use ref_format;
/// Represents an object id in Git. Re-exported from `radicle-git-ext`.
pub type Oid = Oid;
/// Private modules with their public types.
pub use Repository;
pub use Glob;
pub use History;
pub use ;
pub use Tag;
pub use ;
pub use Namespace;
pub use Stats;
pub use ;
pub use Error;