git-internal 0.7.4

High-performance Rust library for Git internal objects, Pack files, and AI-assisted development objects (Intent, Plan, Task, Run, Evidence, Decision) with delta compression, streaming I/O, and smart protocol support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Git smart-protocol façade that re-exports core traits, transport adapters, capability types, and
//! helpers so embedders can speak Git over HTTP/SSH or custom transports with minimal plumbing.

pub mod core;
pub mod http;
pub mod pack;
pub mod smart;
pub mod ssh;
pub mod types;
pub mod utils;

// Re-export main interfaces
pub use core::{AuthenticationService, GitProtocol, RepositoryAccess};

pub use types::*;