this repo has no description
1opam-version: "2.0" 2maintainer: "Alessandro Strada <alessandro.strada@gmail.com>" 3authors: [ "Alessandro Strada" ] 4license: "MIT" 5homepage: "https://github.com/astrada/gapi-ocaml" 6dev-repo: "git+https://github.com/astrada/gapi-ocaml.git" 7bug-reports: "https://github.com/astrada/gapi-ocaml/issues" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 11] 12depends: [ 13 "ocaml" {>= "4.02.3"} 14 "cryptokit" 15 ("extlib" | "extlib-compat") 16 "dune" 17 "ocamlnet" {>= "4.1.4"} 18 "ocurl" 19 "ounit" {with-test} 20 "ppx_monadic" {with-test} 21 "xmlm" 22 "yojson" {< "2.0.0"} 23] 24synopsis: "A simple OCaml client for Google Services" 25description: """ 26gapi-ocaml is a simple, unofficial, OCaml client for Google Services. 27The library supports ClientLogin, OAuth 1.0a, and OAuth 2.0 28authentication. Supported RESTful APIs: Calendar APIs v3, Google+ API 29v1, Tasks API v1, APIs Discovery Service v1, URL Shortener API v1, 30OAuth2 API v2, Custom Search API v1, Google Analytics API v3, Page 31Speed Online API v1, Blogger API v2, Site Verification API v1, AdSense 32Management API v1.4, BigQuery API v2, Drive API v2, Drive API v3, 33Gmail API v1. Google Data Protocol APIs (GData): Google Documents List 34API v3.""" 35url { 36 src: "https://github.com/astrada/gapi-ocaml/archive/v0.3.11.tar.gz" 37 checksum: [ 38 "sha256=45c061c75a0bf6ff4d6ba68bf8462a2154d2551559a4132404badbf231997dcc" 39 "md5=3473f707b9f8484756163776b802628c" 40 ] 41}