radicle_git_ext/
lib.rs

1// Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation>
2//
3// This file is part of radicle-link, distributed under the GPLv3 with Radicle
4// Linking Exception. For full terms see the included LICENSE file.
5
6//! Extensions and wrappers for `git2` types
7
8pub mod author;
9pub mod blob;
10pub mod commit;
11pub mod error;
12pub mod oid;
13pub mod revwalk;
14pub mod transport;
15pub mod tree;
16
17pub use blob::*;
18pub use error::*;
19pub use oid::*;
20pub use revwalk::*;
21pub use transport::*;
22pub use tree::Tree;
23
24pub use git_ref_format as ref_format;