this repo has no description
1opam-version: "2.0" 2maintainer: "Anders Fugmann <anders@fugmann.net>" 3authors: [ "Anders Fugmann" ] 4homepage: "https://github.com/andersfugmann/amqp-client" 5bug-reports: "https://github.com/andersfugmann/amqp-client/issues" 6dev-repo: "git+https://github.com/andersfugmann/amqp-client.git" 7doc: "https://andersfugmann.github.io/amqp-client/" 8license: "BSD-3-Clause" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12] 13depends: [ 14 "ocaml" {>= "4.04.0"} 15 "dune" {>= "1.1"} 16 "ezxmlm" {build} 17 "ocplib-endian" {>= "0.6"} 18 "async" {with-test} 19 "lwt" {with-test} 20] 21synopsis: "Amqp client base library" 22description: """ 23This library provides high level client bindings for amqp. The library 24is tested with rabbitmq, but should work with other amqp 25servers. The library is written in pure OCaml. 26 27This is the base library required by lwt/async versions. 28You should install either amqp-client-async or amqp-client-lwt 29for actual client functionality.""" 30url { 31 src: "https://github.com/andersfugmann/amqp-client/archive/2.2.2.tar.gz" 32 checksum: [ 33 "md5=52f327b5aea93f81fb2c7d91b56842cf" 34 "sha512=2595170758f71d775a5e8247040391a0732cdf04bfeb5230f549987fa6428c653fa40bbf2123af077de9910716b5c3013327c34adf8c7449a58d43eaa1d4aad5" 35 ] 36}