11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- build: [
4- ["dune" "subst"] {pinned}
5- ["dune" "build" "-p" name "-j" jobs]
6- ["dune" "runtest" "-p" name "-j" jobs] {with-test}
7- ["dune" "build" "-p" name "@doc"] {with-doc}
8- ]
3+ synopsis: "GitHub APIv3 OCaml library"
4+ description: """
5+ This library provides an OCaml interface to the
6+ [GitHub APIv3](https://docs.github.com/rest/) (JSON).
7+
8+ It is compatible with [MirageOS](https://mirage.io) and also compiles to pure
9+ JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml)."""
910maintainer: ["Anil Madhavapeddy <
[email protected] >"]
1011authors: [
1112 "Anil Madhavapeddy"
@@ -18,26 +19,36 @@ authors: [
1819 "Jeremy Yallop"
1920 "Dave Tucker"
2021]
21- bug-reports: "https://github.com/mirage/ocaml-github/issues"
22+ license: "MIT"
23+ tags: ["org:mirage" "org:xapi-project" "git"]
2224homepage: "https://github.com/mirage/ocaml-github"
2325doc: "https://mirage.github.io/ocaml-github/"
24- license: "MIT"
25- dev-repo: "git+https://github.com/mirage/ocaml-github.git"
26- synopsis: "GitHub APIv3 OCaml library"
27- description: """
28- This library provides an OCaml interface to the
29- [GitHub APIv3](https://docs.github.com/rest/) (JSON).
30-
31- It is compatible with [MirageOS](https://mirage.io) and also compiles to pure
32- JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml)."""
26+ bug-reports: "https://github.com/mirage/ocaml-github/issues"
3327depends: [
34- "ocaml " {>= "4.03.0 "}
35- "dune " {>= "1.10 "}
28+ "dune " {>= "2.7 "}
29+ "ocaml " {>= "4.08.0 "}
3630 "uri" {>= "1.9.0"}
37- "cohttp" {>= "0.99.0" & < "3 .0.0"}
38- "cohttp-lwt" {>= "0.99.0" & < "3 .0.0"}
31+ "cohttp" {>= "4 .0.0"}
32+ "cohttp-lwt-jsoo " {>= "4 .0.0"}
3933 "lwt" {>= "2.4.4"}
34+ "cohttp-lwt" {>= "4.0.0"}
4035 "github-data" {= version}
4136 "yojson" {>= "1.6.0"}
4237 "stringext"
38+ "odoc" {with-doc}
4339]
40+ build: [
41+ ["dune" "subst"] {dev}
42+ [
43+ "dune"
44+ "build"
45+ "-p"
46+ name
47+ "-j"
48+ jobs
49+ "@install"
50+ "@runtest" {with-test}
51+ "@doc" {with-doc}
52+ ]
53+ ]
54+ dev-repo: "git+https://github.com/mirage/ocaml-github.git"
0 commit comments