this repo has no description
1opam-version: "2.0" 2maintainer: "Carmelo Piccione <carmelo.piccione@gmail.com>" 3synopsis: "OCaml bindings for Gemini Trading Exchange API" 4description: "This library implements the Gemini exchange v1 REST, Market 5Data, and Order events websockets services. It is backed by cohttp-async 6and websockets-async to do the heavy lifting. A provisional console interface 7is also provided using s-expressions to encode request parameters." 8authors: "Carmelo Piccione" 9homepage: "https://github.com/struktured/ocaml-gemini" 10license: "MIT" 11bug-reports: "https://github.com/struktured/ocaml-gemini/issues" 12dev-repo: "git+https://github.com/struktured/ocaml-gemini.git" 13build: [ 14 ["dune" "build" "-p" name "-j" jobs] 15] 16doc: "https://struktured.github.io/ocaml-gemini/" 17depends: [ 18 "ocaml" {>= "4.06.1"} 19 "async" {>= "v0.11.0"} 20 "core" {>= "v0.11.1"} 21 "async_ssl" 22 "cohttp-async" 23 "dune" {< "2.0"} 24 "ppx_jane" 25 "uri" 26 "hex" 27 "yojson" 28 "zarith" 29 "nocrypto" 30 "ppx_deriving_yojson" 31 "ppx_csv_conv" 32 "csvfields" 33 "websocket-async" {< "2.13"} 34 "expect_test_helpers" 35] 36url { 37 src: 38 "https://github.com/struktured/ocaml-gemini/releases/download/0.2.0/gemini-0.2.0.tbz" 39 checksum: [ 40 "sha256=e580ca8365b2c2cf6a8618a16d25068b58a4acbe1521e1e2e4a098aa612d3df5" 41 "md5=7c96b223bd0d3c82ca0eb602d96de3f4" 42 ] 43}