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