this repo has no description
1opam-version: "2.0" 2synopsis: "GitHub APIv3 OCaml library" 3description: """ 4This library provides an OCaml interface to the 5[GitHub APIv3](https://docs.github.com/rest/) (JSON). 6 7It is compatible with [MirageOS](https://mirage.io) and also compiles to pure 8JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml).""" 9maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 10authors: [ 11 "Anil Madhavapeddy" 12 "David Sheets" 13 "Andy Ray" 14 "Jeff Hammerbacher" 15 "Thomas Gazagnaire" 16 "Rudi Grinberg" 17 "Qi Li" 18 "Jeremy Yallop" 19 "Dave Tucker" 20] 21license: "MIT" 22tags: ["org:mirage" "org:xapi-project" "git"] 23homepage: "https://github.com/mirage/ocaml-github" 24doc: "https://mirage.github.io/ocaml-github/" 25bug-reports: "https://github.com/mirage/ocaml-github/issues" 26depends: [ 27 "dune" {>= "2.7"} 28 "ocaml" {>= "4.08.0"} 29 "uri" {>= "1.9.0"} 30 "cohttp" {>= "4.0.0"} 31 "cohttp-lwt-jsoo" {>= "4.0.0"} 32 "lwt" {>= "2.4.4"} 33 "cohttp-lwt" {>= "4.0.0"} 34 "github-data" {= version} 35 "yojson" {>= "1.7.0"} 36 "stringext" 37 "odoc" {with-doc} 38] 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53dev-repo: "git+https://github.com/mirage/ocaml-github.git" 54url { 55 src: 56 "https://github.com/mirage/ocaml-github/releases/download/4.4.0/github-data-4.4.0.tbz" 57 checksum: [ 58 "sha256=c36e08b64ba189823d8215c366ff4e9fdbc41c790781246e96cf2c6c1fbb818a" 59 "sha512=6588691808a017b11c36031f8e923a47bbc4fd097652b90708cff4626267f0f535a9433dc95cbf1d1b871794a9f9f1391428e5a2f958cc12714c59f351659985" 60 ] 61} 62x-commit-hash: "a5919eb10679004e497794e5ce8915b5dbdfad0b"