this repo has no description
1opam-version: "2.0" 2maintainer: "Hezekiah Carty <hez@0ok.org>" 3authors: [ "Hezekiah M. Carty <hez@0ok.org>" ] 4license: "MIT" 5homepage: "https://github.com/hcarty/mwt" 6dev-repo: "git+https://github.com/hcarty/mwt.git" 7bug-reports: "https://github.com/hcarty/mwt/issues" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10 ["dune" "runtest" "-p" name] {with-test} 11 ["dune" "build" "@doc" "-p" name] {with-doc} 12] 13depends: [ 14 "ocaml" {>= "4.03.0"} 15 "base-threads" 16 "base-unix" 17 "dune" 18 "lwt" {>= "2.7.0"} 19 "lwt_ppx" 20] 21synopsis: "Mediumweight thread library for OCaml via Lwt" 22description: """ 23Mwt is a modification of the Lwt_preemptive module from Lwt, allowing 24users to create and manage multiple independent preemptive thread 25pools.""" 26url { 27 src: "https://github.com/hcarty/mwt/releases/download/v0.1.0/mwt-0.1.0.tbz" 28 checksum: [ 29 "sha256=781d4a6dc0c2aeaa81242499ac05660b85485cb19f8c6c2d840a12728c1e5a4c" 30 "md5=a123174c4997366be6d00b4e55521f65" 31 ] 32}