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