git_index/extension/tree/
mod.rs

1use crate::extension::Signature;
2
3/// The signature for tree extensions
4pub const SIGNATURE: Signature = *b"TREE";
5
6///
7pub mod verify;
8
9mod decode;
10pub use decode::decode;
11
12mod write;
13
14#[cfg(test)]
15mod tests {
16
17    #[test]
18    fn size_of_tree() {
19        assert_eq!(std::mem::size_of::<crate::extension::Tree>(), 88);
20    }
21}