(* Copyright (c) 2013-2017 Thomas Gazagnaire Copyright (c) 2017-2024 Romain Calascibetta Copyright (c) 2024-2026 Thomas Gazagnaire Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) (** Git object format implementation in pure OCaml. This library provides type-safe encoding and decoding of Git objects: blobs, trees, commits, and tags. It is derived from mirage/ocaml-git and robur-coop/carton, simplified for Eio-native usage. *) module Hash = Hash module User = User module Blob = Blob module Tree = Tree module Commit = Commit module Tag = Tag module Value = Value module Reference = Reference module Pack = Pack module Pack_index = Pack_index module Repository = Repository module Rev_list = Rev_list module Subtree = Subtree module Config = Config module Index = Index module Remote = Remote module Diff = Diff module Worktree = Worktree