this repo has no description
1opam-version: "2.0" 2build: [ 3 ["dune" "subst"] {dev} 4 ["dune" "build" "-p" name "-j" jobs] 5 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 6 ["dune" "build" "-p" name "@doc"] {with-doc} 7] 8maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 9authors: [ 10 "Anil Madhavapeddy" 11 "David Sheets" 12 "Andy Ray" 13 "Jeff Hammerbacher" 14 "Thomas Gazagnaire" 15 "Rudi Grinberg" 16 "Qi Li" 17 "Jeremy Yallop" 18 "Dave Tucker" 19] 20bug-reports: "https://github.com/mirage/ocaml-github/issues" 21homepage: "https://github.com/mirage/ocaml-github" 22doc: "https://mirage.github.io/ocaml-github/" 23license: "MIT" 24dev-repo: "git+https://github.com/mirage/ocaml-github.git" 25synopsis: "GitHub APIv3 OCaml library" 26description: """ 27This library provides an OCaml interface to the 28[GitHub APIv3](https://developer.github.com/v3/) (JSON). 29 30It is compatible with [MirageOS](https://mirage.io) and also compiles to pure 31JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml).""" 32depends: [ 33 "ocaml" {>= "4.03.0"} 34 "dune" {>= "1.10"} 35 "uri" {>= "1.9.0"} 36 "cohttp" {>= "0.99.0"} 37 "cohttp-lwt" {>= "0.99"} 38 "lwt" {>= "2.4.4"} 39 "atdgen" {>= "2.0.0" & < "2.16.0"} 40 "yojson" {>= "1.7.0"} 41 "stringext" 42] 43url { 44 src: 45 "https://github.com/mirage/ocaml-github/releases/download/4.2.0/github-unix-4.2.0.tbz" 46 checksum: [ 47 "sha256=10fecdb5d58ab4dac85d615e89d0e8eab2413a243bad6ad2f4a7f8783704d745" 48 "sha512=6b89941480f9fc59aedf5b4844b0b1892229e50e034c86d4a1c5ff9afcc10778262d23cee72f62a663873a52cfece676802fd4e3af16aefb0eec24a458761484" 49 ] 50}