guts-git 0.1.0

Git protocol implementation for Guts - pack files and smart HTTP protocol.
Documentation
# guts-git

Git protocol implementation for pack files and smart HTTP in Guts.

## Overview

This crate implements the Git protocol for:

- Pack file generation and parsing
- Smart HTTP protocol (upload-pack, receive-pack)
- Reference advertisement
- Delta compression

## Usage

```rust
use guts_git::{PackFile, SmartProtocol};

// Generate a pack file
let pack = PackFile::create(&objects)?;

// Handle git clone/fetch
let response = SmartProtocol::upload_pack(&request, &storage)?;
```

## Part of Guts

This crate is part of [Guts](https://github.com/AbdelStark/guts), a decentralized, censorship-resistant alternative to GitHub built on BFT consensus.

## License

MIT OR Apache-2.0