this repo has no description
1opam-version: "2.0" 2maintainer: [ "thomas@gazagnaire.org" 3 "romain.calascibetta@gmail.com" ] 4authors: "Thomas Gazagnaire" 5license: "ISC" 6homepage: "https://github.com/mirage/ocaml-git" 7bug-reports: "https://github.com/mirage/ocaml-git/issues" 8dev-repo: "git+https://github.com/mirage/ocaml-git.git" 9doc: "https://mirage.github.io/ocaml-git/" 10synopsis: "Git format and protocol in pure OCaml" 11description: """ 12Support for on-disk and in-memory Git stores. Can read and write all 13the Git objects: the usual blobs, trees, commits and tags but also 14the pack files, pack indexes and the index file (where the staging area 15lives). 16 17All the objects share a consistent API, and convenience functions are 18provided to manipulate the different objects.""" 19 20build: [ 21 ["dune" "subst"] {dev} 22 ["dune" "build" "-p" name "-j" jobs] 23 ["dune" "runtest" "-p" name] {with-test} 24] 25 26depends: [ 27 "ocaml" {>= "4.03.0"} 28 "dune" 29 "uri" {>= "1.9.0"} 30 "lwt" {>= "2.4.7"} 31 "angstrom" {>= "0.9.0" & < "0.14.0"} 32 "fpath" {>= "0.7.0"} 33 "digestif" {>= "0.7" & < "1.0.0"} 34 "lru" {>= "0.2.0" & < "0.3.0"} 35 "decompress" {>= "0.8.1" & < "0.9.0"} 36 "checkseum" {>= "0.0.3" & < "0.5.0"} 37 "encore" {< "0.3"} 38 "duff" {< "0.3"} 39 "hex" 40 "ocplib-endian" 41 "rresult" 42 "logs" 43 "fmt" 44 "astring" 45 "cstruct" 46 "ocamlgraph" 47 "alcotest" {with-test & >= "0.8.1"} 48 "nocrypto" {with-test & >= "0.5.4"} 49 "tls" {with-test & < "1.0.0"} 50 "mtime" {with-test & >= "1.0.0" & < "2.0.0"} 51] 52url { 53 src: 54 "https://github.com/mirage/ocaml-git/releases/download/2.0.0/git-2.0.0.tbz" 55 checksum: [ 56 "sha256=65298ea59b0c6163dd4e110caeb59f71a7643acf469c75de20aeb5099b9cb2f6" 57 "md5=9d7200e8eb15325e3bf37199f6255826" 58 ] 59}