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 web, 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.0"} 19 "async" {>= "v0.11.0"} 20 "core" {>= "v0.11.1"} 21 "async_ssl" 22 "cohttp-async" {>="1.2.0"} 23 "dune" {< "2.0"} 24 "ppx_jane" 25 "uri" 26 "hex" 27 "yojson" 28 "zarith" 29 "nocrypto" 30 "ppx_deriving_yojson" 31 "websocket-async" {< "2.13"} 32 "expect_test_helpers" 33] 34url { 35 src: 36 "https://github.com/struktured/ocaml-gemini/releases/download/0.1/gemini-0.1.tbz" 37 checksum: [ 38 "sha256=effdbaceae2cc6ecb661eb92caac7e58f521ea1e0dc6472123e71f885a3cdc2f" 39 "md5=fc44990d148e1312d6d888f48c9fd156" 40 ] 41}