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 & >= "0.9"} 12 "qtest" {with-test} 13 "gen" {with-test} 14 "containers" {with-test & >= "2.6" & < "3.13"} 15 "odoc" {with-doc} 16 "seq" 17 "ocaml" { >= "4.03.0" } 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.1.tar.gz" 29 checksum: [ 30 "md5=1547a97040d4b8787ffda0e959e8cd95" 31 "sha512=3028849493e90a008d7a490e5d3abb955f5a36fa1be784e9895a60c630ed36dc6ea9663e6148d9dc996d9462b8cc5ac75de38233d06f4ecce75e896552e72d92" 32 ] 33}