this repo has no description
1opam-version: "2.0" 2maintainer: "nv-vn <nv@cock.li>" 3authors: "nv-vn <nv@cock.li>" 4homepage: "https://github.com/nv-vn/telegraml" 5bug-reports: "https://github.com/nv-vn/telegraml/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/nv-vn/telegraml.git" 8build: ["jbuilder" "build" "-p" name "-j" jobs] 9depends: [ 10 "ocaml" {>= "4.03"} 11 "jbuilder" {>= "1.0+beta7"} 12 "lwt" {>= "2.5.0"} 13 "lwt_ssl" 14 "cohttp" {>= "1.0.0"} 15 "cohttp-lwt" {>= "1.0.0"} 16 "cohttp-lwt-unix" {>= "1.0.0"} 17 "yojson" {>= "1.3.0" & < "2.0.0"} 18 "batteries" {>= "2.4.0"} 19] 20synopsis: "Telegram Bot API for OCaml" 21description: """ 22An implementation of the Telegram Bot API in 100% OCaml, 23using Lwt for asynchronous operations and Cohttp for networking. 24Implements most basic functionality present in the API, plus 25convenience modules for error handling and defining commands.""" 26url { 27 src: "https://github.com/nv-vn/TelegraML/archive/v2.2.0.tar.gz" 28 checksum: [ 29 "sha256=b07ec61353d3a245f81c4c510a41b58b75c5ea17f0b1bf3df22b1c3601bd45c4" 30 "md5=2fdd7c68eec4b7b904d9c4e536395a70" 31 ] 32}