this repo has no description
1opam-version: "2.0"
2maintainer: "simon.cruanes.2007@m4x.org"
3authors: "Simon Cruanes"
4license: "BSD-2-Clause"
5tags: ["sequence" "iterator" "seq" "pure" "list"]
6homepage: "https://github.com/c-cube/oseq/"
7doc: "https://c-cube.github.io/oseq/"
8bug-reports: "https://github.com/c-cube/oseq/issues"
9depends: [
10 "ocaml" {>= "4.02.0" & < "4.13"}
11 "dune"
12 "qcheck" {with-test & >= "0.9" & < "0.14"}
13 "qcheck-ounit" {with-test & < "0.14"}
14 "qtest" {with-test}
15 "gen" {with-test}
16 "containers" {with-test}
17 "odoc" {with-doc}
18 "seq"
19]
20build: [
21 ["dune" "build" "-p" name]
22 ["dune" "build" "@doc" "-p" name] {with-doc}
23 ["dune" "runtest" "-p" name] {with-test}
24]
25dev-repo: "git+https://github.com/c-cube/oseq.git"
26url {
27 src: "https://github.com/c-cube/oseq/archive/0.2.tar.gz"
28 checksum: [
29 "md5=18a41450acd7da1648a2a24229f00d7a"
30 "sha512=1a983fb6d92780beb7e6a09c7883060df060b5bb52397a89eb86a8b1b863bbec032a2b38cef441bfc5c33374e3ea2c24c40777774b6e7fbf6528039e154b2a39"
31 ]
32}
33synopsis: "Simple list of suspensions, as a composable lazy iterator that behaves like a value"
34description: "Extends the new standard library's `Seq` module with many useful combinators."