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"
6license: "BSD-3-Clause"
7dev-repo: "git+https://github.com/andersfugmann/amqp-client.git"
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: ["async" "lwt"]
21conflicts: [
22 "async" {>= "v0.10" }
23 "lwt" {< "2.4.6"}
24]
25synopsis: "Amqp client library compatable with async and lwt."
26description: """
27This library provides high level client bindings for amqp. The library
28is tested against rabbitmq, but should work against other amqp
29servers. The library is written in pure OCaml and supports both Async
30and Lwt for concurrency."""
31url {
32 src: "https://github.com/andersfugmann/amqp-client/archive/1.1.4.tar.gz"
33 checksum: [
34 "sha256=f3ce83cf82d63f307e8cc7c07938e63fdb57d9185d66b724587847c66a1d8985"
35 "md5=9094e13ffda6ab9ee06eca6588fe841d"
36 ]
37}