this repo has no description
1opam-version: "2.0" 2synopsis: "Implementation of PACK file in OCaml" 3description: """\ 4Carton is an implementation of the PACK file 5in OCaml. PACK file is used by Git to store Git objects. Carton is more 6abstracted when it can store any objects.""" 7maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" 8authors: "Romain Calascibetta <romain.calascibetta@gmail.com>" 9license: "MIT" 10homepage: "https://github.com/mirage/ocaml-git" 11doc: "https://mirage.github.io/ocaml-git/" 12bug-reports: "https://github.com/mirage/ocaml-git/issues" 13depends: [ 14 "ocaml" {>= "4.08.0"} 15 "dune" {>= "2.8.0"} 16 "carton" {= version} 17 "carton-lwt" {= version} 18 "bigstringaf" {>= "0.9.0"} 19 "lwt" 20 "fpath" 21 "result" 22 "fmt" {>= "0.8.9"} 23 "base-unix" 24 "decompress" {>= "1.4.3"} 25 "astring" {>= "0.8.5"} 26 "alcotest" {>= "1.2.3" & with-test} 27 "alcotest-lwt" {>= "1.2.3" & with-test} 28 "cstruct" {>= "6.1.0" & with-test} 29 "logs" {>= "0.7.0"} 30 "mirage-flow" {>= "2.0.1" & with-test} 31 "rresult" {>= "0.6.0" & with-test} 32 "ke" {>= "0.6" & with-test} 33] 34build: [ 35 ["dune" "build" "-p" name "-j" jobs] 36 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 37] 38dev-repo: "git+https://github.com/mirage/ocaml-git.git" 39url { 40 src: 41 "https://github.com/mirage/ocaml-git/releases/download/carton-v0.5.0/git-carton-v0.5.0.tbz" 42 checksum: [ 43 "sha256=4d38e4a5630e21ce059d76b11be1ef3e5fce3b2469d8566ba8b7f1a371137925" 44 "sha512=643dc8885b2933cfd1b60e41e852d0a9608439cf95fe7ad9ff53c3ede15487c0c392270f6e7f0c34b3993e7f65a3f1e5d014dc91091e6980719c476b325055d5" 45 ] 46} 47x-commit-hash: "803cd7b76540c15f99d0867568cd58dab581c809"