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.10.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/e7efe7b9564ab13e5aad5646f34e05d814456c1b.tar.gz" 35 checksum: [ 36 "md5=6eaee956339fbc6e4100499a0adc6b8a" 37 "sha512=0592c95491c2567b0488667b0e535d344f8bf0f5927bb7e72fcdea414e29365f8e2dfc448947439631af23ca3bbdd6d4f87e0845023f7ff8aeb8919f58da1c9e" 38 ] 39}