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.7.0"}
19 "bigarray-compat"
20 "lwt"
21 "fpath"
22 "result"
23 "mmap"
24 "fmt" {>= "0.8.9"}
25 "base-unix"
26 "decompress" {>= "1.3.0"}
27 "astring" {>= "0.8.5"}
28 "alcotest" {>= "1.2.3" & with-test}
29 "alcotest-lwt" {>= "1.2.3" & with-test}
30 "cstruct" {>= "6.0.0" & with-test}
31 "logs" {>= "0.7.0"}
32 "mirage-flow" {>= "2.0.1" & with-test}
33 "rresult" {>= "0.6.0" & with-test}
34 "ke" {>= "0.4" & with-test}
35]
36build: [
37 ["dune" "build" "-p" name "-j" jobs]
38 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
39]
40dev-repo: "git+https://github.com/mirage/ocaml-git.git"
41x-commit-hash: "208fa79a9b4f4064ee93bfaeeb7ca06fff7878a0"
42url {
43 src:
44 "https://github.com/mirage/ocaml-git/releases/download/carton-v0.4.3/carton-carton-v0.4.3.tbz"
45 checksum: [
46 "sha256=f9c992b84235a32da3b756f42b2b3d3136b306415b0d4f4f259d07738a6ee963"
47 "sha512=4a52483100b4f16a66c248116b7e53528a52b20b4743d26d94463cc711ed04e0fc3215119ce9b0cb75c2f822667e0853102bff4bc7740170f816674862d18b9a"
48 ]
49}