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 ["dune" "build" "-p" name "-j" jobs]
10 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
11]
12depends: [
13 "ocaml" {>= "4.04.0"}
14 "dune"
15 "xml-light" {build}
16 "ocplib-endian" {>= "0.6"}
17 "async" {with-test}
18 "lwt" {with-test}
19]
20synopsis: "Amqp client base library."
21description: """
22This library provides high level client bindings for amqp. The library
23is tested against rabbitmq, but should work against other amqp
24servers. The library is written in pure OCaml.
25
26This is the base library requires by lwt/async versions.
27You should install either amqp-client-async or amqp-client-lwt
28for actual client functionality."""
29url {
30 src: "https://github.com/andersfugmann/amqp-client/archive/2.0.3.tar.gz"
31 checksum: [
32 "sha256=80cac0c62d3d5079441502104f683990683561efc9c0e7b06f0d3388c79a3394"
33 "md5=4ff63b64da873a14047f541584c30d56"
34 ]
35}