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 "async" {>= "v0.10"}
28]
29synopsis: "Amqp client library compatable with async and lwt."
30description: """
31This library provides high level client bindings for amqp. The library
32is tested against rabbitmq, but should work against other amqp
33servers. The library is written in pure OCaml and supports both Async
34and Lwt for concurrency."""
35url {
36 src: "https://github.com/andersfugmann/amqp-client/archive/1.0.6.tar.gz"
37 checksum: [
38 "sha256=e9cb56bc4a092d13c7b5164412a7f5c9f27edb151bf380704f28cc61d101c8b3"
39 "md5=72a6391179af967e18d60a12ef526c82"
40 ]
41}