nss_core 0.1.0

nssi core logic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod blob;
pub mod commit;
pub mod index;
pub mod metadata;
pub mod object;
pub mod tree;
pub mod diff;

pub use blob::Blob;
pub use commit::Commit;
pub use index::{Index, IndexVesion1};
pub use metadata::FileMeta;
pub use object::{Hashable, Object};
pub use tree::{Entry, Tree};
pub use diff::{Diff, DIffTag};