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" {>= "0.8.1"} 21 "rresult" 22 "base64" {>= "3.0.0"} 23 "result" 24 "bigstringaf" {>= "0.8.0" & < "0.9"} 25 "bigarray-compat" 26 "optint" 27 "decompress" {>= "1.3.0" & < "1.4.3"} 28 "logs" 29 "lwt" 30 "mimic" 31 "cstruct" {>= "5.0.0"} 32 "angstrom" {>= "0.14.0"} 33 "carton" {>= "0.4.0" & < "0.4.1"} 34 "carton-lwt" {>= "0.4.0" & < "0.4.1"} 35 "carton-git" {>= "0.4.0" & < "0.4.1"} 36 "ke" {>= "0.4"} 37 "fmt" {>= "0.8.7"} 38 "checkseum" {>= "0.2.1"} 39 "ocamlgraph" {>= "1.8.8"} 40 "astring" 41 "fpath" 42 "encore" {>= "0.7"} 43 "alcotest" {with-test & >= "1.1.0"} 44 "alcotest-lwt" {with-test & >= "1.1.0"} 45 "mirage-crypto-rng" {with-test & >= "0.8.0" & < "1.0.0"} 46 "cmdliner" {with-test} 47 "base-unix" {with-test} 48 "fpath" 49 "mirage-flow" {>= "2.0.1"} 50 "domain-name" {>= "0.3.0"} 51 "emile" {>= "1.1"} 52 "ipaddr" {>= "5.0.1"} 53 "psq" {>= "0.2.0"} 54 "uri" {>= "4.1.0"} 55 "crowbar" {>= "0.2" & with-test} 56] 57build: [ 58 ["dune" "build" "-p" name "-j" jobs] 59 ["dune" "runtest" "-p" name] {with-test} 60] 61dev-repo: "git+https://github.com/mirage/ocaml-git.git" 62x-commit-hash: "01b21561c70056f449e7a8a2960b1f2a8ddb9604" 63url { 64 src: 65 "https://github.com/mirage/ocaml-git/releases/download/3.3.2/git-3.3.2.tbz" 66 checksum: [ 67 "sha256=3bc37f374c41b5310334223c86d3a08ebe6b1c60d15c8a02307684a5df93ac07" 68 "sha512=2f59ddd2add60c8d37637e3cad1871e88307aabcaf5b5dd0a9387da99abcd55c0da58137e39e23b77362e3f91923ba83e70007f65ed0f9f6384a15fe922e1b85" 69 ] 70}