this repo has no description
1opam-version: "2.0" 2synopsis: "Lambda-based streaming library" 3description: "A simple and principled streaming library based on lambdas" 4maintainer: ["me@risto.codes"] 5authors: ["Risto Stevcev"] 6license: "BSD-3-Clause" 7homepage: "https://github.com/Risto-Stevcev/lambda-streams" 8doc: "https://risto-stevcev.github.io/lambda-streams" 9bug-reports: "https://github.com/Risto-Stevcev/lambda-streams/issues" 10depends: [ 11 "ocaml" {>= "4.06.1"} 12 "alcotest" {>= "1.0.1" & with-test} 13 "fmt" {>= "0.8.8" & with-test} 14 "mdx" {>= "1.6.0" & with-test} 15 "odoc" {>= "1.5.0" & with-doc} 16 "dune" {>= "2.2.0"} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/Risto-Stevcev/lambda-streams.git" 33url { 34 src: "https://github.com/Risto-Stevcev/lambda-streams/archive/0.1.2.tar.gz" 35 checksum: [ 36 "md5=8c1ce04ee769b56434696bd57aee1a5b" 37 "sha512=9bb794f3852da60e536277f41ca5c6db678e5f0f5100ca13bf4c054a8d5c17834891c9ba2d73ddd35dc4f52f4b8be6076611b8f8c413eb6e93d61c161c67f9aa" 38 ] 39}