aboutsummaryrefslogtreecommitdiff
path: root/src/git/mod.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-06-22 06:23:04 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-06-22 06:23:04 +0200
commite30713b84bc9e66f7a8e8d2f51e953472cac28e4 (patch)
tree3098b1c77a978dcad0c828f57386d1c8999aa26b /src/git/mod.rs
parent84a9a0ccee713e26a28ff5e54ea3776085d93b5f (diff)
Committing all the libgit2 progress before throwing it away
I don't think libgit2 is the way forward to make any of this work. There's so much work involved in parsing the git k-v store, and the library itself is essentially of zero help for most of the heavy lifting.
Diffstat (limited to 'src/git/mod.rs')
-rw-r--r--src/git/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/git/mod.rs b/src/git/mod.rs
new file mode 100644
index 0000000..1cd9057
--- /dev/null
+++ b/src/git/mod.rs
@@ -0,0 +1,5 @@
+//! Wrappers for libgit2
+
+pub mod log;
+pub mod repo;
+pub mod tree;