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" 22 "base64" {>= "3.0.0"} 23 "result" 24 "bigstringaf" {>= "0.9.0"} 25 "optint" 26 "decompress" {>= "1.4.0"} 27 "logs" 28 "lwt" 29 "mimic" {>= "0.0.6"} 30 "cstruct" {>= "6.0.0"} 31 "angstrom" {>= "0.14.0"} 32 "carton" {>= "0.4.4" & < "1.0.0"} 33 "carton-lwt" {>= "0.4.4" & < "1.0.0"} 34 "carton-git" {>= "0.4.4"} 35 "ke" {>= "0.4"} 36 "fmt" {>= "0.8.7"} 37 "checkseum" {>= "0.3.3"} 38 "ocamlgraph" {>= "1.8.8"} 39 "astring" 40 "fpath" 41 "encore" {>= "0.8"} 42 "alcotest" {with-test & >= "1.1.0"} 43 "alcotest-lwt" {with-test & >= "1.1.0"} 44 "mirage-crypto-rng" {with-test & >= "0.8.0" & < "1.0.0"} 45 "cmdliner" {with-test & >= "1.1.0"} 46 "base-unix" {with-test} 47 "fpath" 48 "hxd" {>= "0.3.2"} 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.1" & 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" 62url { 63 src: 64 "https://github.com/mirage/ocaml-git/releases/download/3.13.0/git-3.13.0.tbz" 65 checksum: [ 66 "sha256=f7cc36026cdefc1f9837f10d7d26f457c236cb21547fcad210e71483561b55d3" 67 "sha512=728f21c3483bdead9420767cb3e57901be1cff428fceb814be3cad817b2d78511d35f559962469e85d3919c59577884d353cb883ac749e6e2b92fb7d0deec4f4" 68 ] 69} 70x-commit-hash: "0d5ea8a31913d10990c1437790d5daf9907a39d7"