this repo has no description
1opam-version: "2.0" 2synopsis: "Pipeline library for Lwt" 3description: """ 4A library to handle pipelines (series of transformation) with support for 5Lwt-based concurrency. 6""" 7maintainer: "Raphaël Proust <code@bnwr.net>" 8authors: "Raphaël Proust <code@bnwr.net>" 9license: "MIT" 10homepage: "https://gitlab.com/nomadic-labs/lwt_pipeline" 11bug-reports: "https://gitlab.com/nomadic-labs/lwt_pipeline/issues" 12dev-repo: "git+https://gitlab.com/nomadic-labs/lwt_pipeline.git" 13depends: [ 14 "ocaml" { >= "4.03" } 15 "dune" { >= "1.7" & < "2.0" } 16 "lwt" 17 ] 18build: ["dune" "build" "-p" name "-j" jobs] 19url { 20 src: 21 "https://gitlab.com/nomadic-labs/lwt_pipeline/-/archive/release-0.1/lwt_pipeline-release-0.1.tar.gz" 22 checksum: [ 23 "md5=420fa855e112d8719c3211a65d1fe03a" 24 "sha512=0ee99fa08d93457a9be7adecb8ee204fb0576526a25bc1a9c442f831fbdbcc41a257fa9ecae063948ea60cb1d7a44ca685bcfe7061d9a6e2182c1bb4944703a8" 25 ] 26}