git-odb 0.14.0

Implements a git object database for loose objects and packs
Documentation
1
2
3
4
5
6
7
8
9
10
//! An object database storing each object in a zlib compressed file with its hash in the path
const HEADER_READ_UNCOMPRESSED_BYTES: usize = 512;

///
pub mod db;
#[doc(inline)]
pub use db::Db;

///
pub mod object;