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" 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] 24conflicts: [ "result" {< "1.5"} ] 25homepage: "https://bitbucket.org/knaack/azure-cosmos-db" 26bug-reports: "https://bitbucket.org/knaack/azure-cosmos-db/issues" 27dev-repo: "git+https://bitbucket.org/knaack/azure-cosmos-db.git" 28build: [ 29 ["dune" "build" "-p" name "-j" jobs] 30 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 31 ] 32url { 33 src: 34 "https://bitbucket.org/knaack/azure-cosmos-db/get/1a8b58d09b3932fd2ee09b94ab68d82fb2cbb164.tar.gz" 35 checksum: [ 36 "md5=2a6fabb2f45a0a8ef624e99c701274b5" 37 "sha512=7fefb87c8402217509fd82e3b8b14af0f1241c2ca0f8b0efb1e5660db12678cbfcb01830299c3718cb219f4b23819afccd18eae962038a62a1dbf470a5079ece" 38 ] 39}