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.07.0"}
19 "dune" {>= "2.6.0"}
20 "digestif" {>= "0.8.1"}
21 "stdlib-shims"
22 "rresult"
23 "result"
24 "bigarray-compat"
25 "bigstringaf" {< "0.9.0"}
26 "optint"
27 "decompress"
28 "logs" {< "0.8.0"}
29 "lwt"
30 "mimic"
31 "cstruct" {>= "5.0.0"}
32 "angstrom" {>= "0.14.0"}
33 "carton" {< "0.2.0"}
34 "carton-lwt" {< "0.2.0"}
35 "carton-git" {< "0.2.0"}
36 "ke" {>= "0.4"}
37 "fmt" {>= "0.8.7" & < "0.10.0"}
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 "base64" {with-test & >= "3.0.0"}
50 "mirage-flow" {>= "2.0.1"}
51 "domain-name" {>= "0.3.0"}
52 "emile" {>= "1.1"}
53 "ipaddr" {>= "5.0.1"}
54 "psq" {>= "0.2.0"}
55 "uri" {>= "4.1.0"}
56 "crowbar" {>= "0.2" & with-test}
57]
58build: [
59 ["dune" "build" "-p" name "-j" jobs]
60 ["dune" "runtest" "-p" name] {with-test}
61]
62dev-repo: "git+https://github.com/mirage/ocaml-git.git"
63x-commit-hash: "5d8ac12dd9b2417d0d6256ba9f5dd683271f33fd"
64url {
65 src:
66 "https://github.com/mirage/ocaml-git/releases/download/3.0.0/git-3.0.0.tbz"
67 checksum: [
68 "sha256=47fe1b1c9ead6ff2dc12c5cb365fdbe1151c0478a15a137ba710fd316af88f54"
69 "sha512=451687a8a4bd4149afb4d68941998d700858d56b4fe3d9247efd1ef301b0bb15c5b11fd2fa01ff4226a0f58a31d1e68fe462952513f65f9cf9a3caa581b92c0a"
70 ]
71}