this repo has no description
1opam-version: "2.0" 2synopsis: "Git format and protocol in pure OCaml" 3description: """\ 4Support for on-disk and in-memory Git stores. Can read and write all 5the Git objects: the usual blobs, trees, commits and tags but also 6the pack files, pack indexes and the index file (where the staging area 7lives). 8 9All the objects share a consistent API, and convenience functions are 10provided to manipulate the different objects.""" 11maintainer: ["thomas@gazagnaire.org" "romain.calascibetta@gmail.com"] 12authors: "Thomas Gazagnaire" 13license: "ISC" 14homepage: "https://github.com/mirage/ocaml-git" 15doc: "https://mirage.github.io/ocaml-git/" 16bug-reports: "https://github.com/mirage/ocaml-git/issues" 17depends: [ 18 "ocaml" {>= "4.08.0"} 19 "dune" {>= "2.8.0"} 20 "digestif" {>= "1.1.2"} 21 "rresult" {>= "0.7.0"} 22 "base64" {>= "3.0.0"} 23 "bigstringaf" {>= "0.9.0"} 24 "optint" 25 "decompress" {>= "1.4.0"} 26 "logs" 27 "lwt" 28 "mimic" {>= "0.0.6"} 29 "cstruct" {>= "6.0.0"} 30 "angstrom" {>= "0.14.0"} 31 "carton" {>= "0.7.2" & < "1.0.0"} 32 "carton-lwt" {>= "0.7.2" & < "1.0.0"} 33 "carton-git" {>= "0.7.2"} 34 "ke" {>= "0.4"} 35 "fmt" {>= "0.8.7"} 36 "checkseum" {>= "0.3.3"} 37 "ocamlgraph" {>= "1.8.8"} 38 "astring" 39 "fpath" 40 "encore" {>= "0.8"} 41 "alcotest" {with-test & >= "1.1.0"} 42 "alcotest-lwt" {with-test & >= "1.1.0"} 43 "mirage-crypto-rng" {with-test & >= "1.0.0"} 44 "cmdliner" {with-test & >= "1.1.0"} 45 "base-unix" {with-test} 46 "hxd" {>= "0.3.2"} 47 "mirage-flow" {>= "4.0.0"} 48 "domain-name" {>= "0.3.0"} 49 "emile" {>= "1.1"} 50 "ipaddr" {>= "5.0.1"} 51 "psq" {>= "0.2.0"} 52 "uri" {>= "4.1.0"} 53 "crowbar" {>= "0.2.1" & with-test} 54] 55conflicts: [ "result" {< "1.5"} ] 56build: [ 57 ["dune" "build" "-p" name "-j" jobs] 58 ["dune" "runtest" "-p" name] {with-test} 59] 60dev-repo: "git+https://github.com/mirage/ocaml-git.git" 61url { 62 src: 63 "https://github.com/mirage/ocaml-git/releases/download/3.17.0/git-3.17.0.tbz" 64 checksum: [ 65 "sha256=ef200d0412ed1a538525d0501298890e0b893e020528094d6a3ae12359fd0265" 66 "sha512=793009a9bf9413147e6c43dfdc4bbe39b00129a5ea0f5d3df149ad2e27b4a3c641ca3b6857476a1cee325aad4d192625220647575470f00d02fb95f085bd9009" 67 ] 68} 69x-commit-hash: "fd2b5c8b4125fa9091b1e51eb9082395f20af9f9"