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"
7license: "BSD-3-Clause"
8build: [
9 ["jbuilder" "build" "-p" name "-j" jobs]
10 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
11]
12depends: [
13 "ocaml" {>= "4.03.0"}
14 "jbuilder" {>= "1.0+beta7"}
15 "xml-light" {build}
16 "ocplib-endian" {>= "0.6"}
17 "async" {with-test}
18 "lwt" {with-test}
19]
20depopts: [
21 "async"
22 "lwt"
23]
24conflicts: [
25 "async" {>= "v0.10" }
26 "lwt" {< "2.4.6"}
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.1.3.tar.gz"
36 checksum: [
37 "sha256=ec087dc3691b5ca3b3c903ba2a519b090df2214b5d3393338f52554fb95350d5"
38 "md5=107607716ab76d6318e48addbe9559de"
39 ]
40}