this repo has no description
1opam-version: "2.0" 2build: [ 3 ["dune" "subst"] {dev} 4 ["dune" "build" "-p" name "-j" jobs] 5 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 6 ["dune" "build" "-p" name "@doc"] {with-doc} 7] 8maintainer: ["Didier Wenzek <didier.wenzek@acidalie.com>"] 9authors: ["Didier Wenzek <didier.wenzek@acidalie.com>"] 10bug-reports: "https://github.com/didier-wenzek/ocaml-kafka/issues" 11homepage: "https://github.com/didier-wenzek/ocaml-kafka" 12doc: "https://didier-wenzek.github.io/ocaml-kafka" 13license: "MIT" 14dev-repo: "git+https://github.com/didier-wenzek/ocaml-kafka.git" 15synopsis: "OCaml bindings for Kafka, Async bindings" 16description: """ 17 18Kafka is a high-throughput distributed messaging system. 19""" 20depends: [ 21 "ocaml" {>= "4.03.0"} 22 "kafka" {= version} 23 "async" {>= "v0.11" & < "v0.15"} 24 "core" {>= "v0.11" & < "v0.15"} 25 "dune" {>= "1.10"} 26] 27x-commit-hash: "8a4c8309af0072b3c23a9a3164913e5b5aaea416" 28url { 29 src: 30 "https://github.com/didier-wenzek/ocaml-kafka/releases/download/0.5/kafka-0.5.tbz" 31 checksum: [ 32 "sha256=7ec32681c104062a4fad43e2736e206128eb88273118071a044081abbc082255" 33 "sha512=7485d83cb20705f21b39c7e40cc6564cee30dba2c1993dc93c2791b4527488a33ef557e9fdaa47d3c0777986468f42460bb16c4d6d4076b1c43443f2cb5c6e3f" 34 ] 35}