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