this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3synopsis: "An extension of containers for threading" 4build: [ 5 ["dune" "build" "-p" name "-j" jobs] 6 ["dune" "build" "@doc" "-p" name ] {with-doc} 7 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 8] 9depends: [ 10 "ocaml" { >= "4.03.0" } 11 "dune" { >= "1.1" } 12 "base-threads" 13 "dune-configurator" 14 "containers" { = version } 15 "iter" { with-test } 16 "qtest" { with-test } 17 "qcheck" { with-test & >= "0.9" } 18 "ounit" { with-test } 19 "uutf" { with-test } 20 "odoc" { with-doc } 21] 22tags: [ "containers" "thread" "semaphore" "blocking queue" ] 23homepage: "https://github.com/c-cube/ocaml-containers/" 24doc: "https://c-cube.github.io/ocaml-containers" 25dev-repo: "git+https://github.com/c-cube/ocaml-containers.git" 26bug-reports: "https://github.com/c-cube/ocaml-containers/issues/" 27authors: "Simon Cruanes" 28url { 29 src: "https://github.com/c-cube/ocaml-containers/archive/v3.1.tar.gz" 30 checksum: [ 31 "md5=18f35ec3794803f5a4f95254f313c764" 32 "sha512=090e33705ffb0f77f71f881f78b51d909778bf41afad32339acac21ddbd5f6947b4ebff754148331f9263a544a6000d7f7412d5758e1835fbe84490240b671de" 33 ] 34}