this repo has no description
1opam-version: "2.0" 2license: "MIT" 3synopsis: "Azure cosmos db interface" 4description: """ 5Provides an interface to the Azure Cosmos db. 6""" 7maintainer: "Morten Knaack <knaack@gmail>" 8authors: "Morten Knaack <knaack@gmail>" 9depends: [ 10 "ocaml" {>= "4.08.0"} 11 "dune" {>= "2.7.0"} 12 "lwt" 13 "lwt_ppx" {>="2.0.2"} 14 "lwt_ssl" 15 "ssl" 16 "atdgen" {>= "2.0.0" & < "2.16.0"} 17 "base64" {>= "3.5.0"} 18 "uri" 19 "cohttp" 20 "cohttp-lwt-unix" 21 "cryptokit" 22 "alcotest-lwt" {with-test} 23 "bisect_ppx" {with-test} 24] 25conflicts: [ "result" {< "1.5"} ] 26homepage: "https://bitbucket.org/knaack/azure-cosmos-db" 27bug-reports: "https://bitbucket.org/knaack/azure-cosmos-db/issues" 28dev-repo: "git+https://bitbucket.org/knaack/azure-cosmos-db.git" 29build: [ 30 ["dune" "build" "-p" name "-j" jobs] 31 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 32 ] 33url { 34 src: 35 "https://bitbucket.org/knaack/azure-cosmos-db/get/37d7946d86fc5b98cef32a3aec7a5431984fc942.tar.gz" 36 checksum: [ 37 "md5=4453f59f81b2d95e1e629289aa2628ab" 38 "sha512=982a2f61ab278cd5d3f200c4f3d34fa8bcb46b2eada62207ef9431091f9e65cf8f23fc859eac5df88bd5bfbe480c9a940cbc8c072b9ea1e62c3891c9e8f52754" 39 ] 40}