this repo has no description
1opam-version: "2.0" 2maintainer: "Anders Fugmann <anders@fugmann.net>" 3authors: [ 4 "Anders Fugmann" 5] 6homepage: "https://github.com/andersfugmann/amqp-client" 7bug-reports: "https://github.com/andersfugmann/amqp-client/issues" 8license: "BSD-3-Clause" 9dev-repo: "git+https://github.com/andersfugmann/amqp-client.git" 10install: [make "install"] 11remove: [make "uninstall"] 12depends: [ 13 "ocaml" {>= "4.03.0"} 14 "ocamlfind" {build} 15 "omake" {build} 16 "xml-light" {build} 17 "ocplib-endian" {>= "0.6"} 18] 19depopts: [ 20 "async" 21 "lwt" 22] 23conflicts: [ 24 "lwt" {< "2.4.6"} 25 "lwt" {>= "4.0.0"} 26 "async" {>="v0.9"} 27] 28synopsis: "Amqp client library compatable with async and lwt." 29description: """ 30This library provides high level client bindings for amqp. The library 31is tested against rabbitmq, but should work against other amqp 32servers. The library is written in pure OCaml and supports both Async 33and Lwt for concurrency.""" 34url { 35 src: "https://github.com/andersfugmann/amqp-client/archive/1.0.3.tar.gz" 36 checksum: [ 37 "sha256=4ee36d96f2cb175fe9f930699b6665a16c3cbeea859fbff16036ea8837cb051f" 38 "md5=7399700f193a98627ba0d2deb4cc2e7f" 39 ] 40}