git-rust 0.1.1

A simple implementation of Git in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "git-rust"
version = "0.1.1"
description = "A simple implementation of Git in Rust"
repository = "https://github.com/arjav0703/git-rust"
edition = "2021"
license = "MIT"
rust-version = "1.80"

[dependencies]
anyhow = "1.0.68"                                # error handling
bytes = "1.3.0"                                  # helps manage buffers
flate2 = "1.0.34"                                # compression
hex = "0.4.3"
sha1 = "0.10.6"
thiserror = "1.0.38"                             # error handling