this repo has no description
1opam-version: "2.0"
2authors: ["Simon Cruanes" "Gabriel Radanne"]
3maintainer: "simon.cruanes.2007@m4x.org"
4license: "BSD-2-clause"
5synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
6build: [
7 ["dune" "build" "@install" "-p" name "-j" jobs]
8 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
9 ["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "arm32" & arch != "x86_32"}
10]
11depends: [
12 "base-bytes"
13 "result"
14 "ocaml" { >= "4.03.0" }
15 "dune" {>= "1.1" & < "3.0"}
16 "dune-configurator"
17 "qcheck" {with-test & >= "0.9"}
18 "qtest" {with-test}
19 "mdx" {with-test & >= "1.3" }
20 "odoc" {with-doc}
21]
22tags: [ "iter" "iterator" "iter" "fold" ]
23homepage: "https://github.com/c-cube/iter/"
24depopts: [
25 "base-bigarray"
26]
27doc: "https://c-cube.github.io/iter/doc/"
28bug-reports: "https://github.com/c-cube/iter/issues"
29dev-repo: "git+https://github.com/c-cube/iter.git"
30url {
31 src: "https://github.com/c-cube/sequence/archive/v1.3.tar.gz"
32 checksum: [
33 "md5=68ddbe4a3626943308d9a4f2be9fa146"
34 "sha512=ab4c1002cb1fbc83d6dc71bae6f47666eb12f63e23c83dd38a5a2e9a9a6f2b3368ef477a7e269b7c6352035e274b745aa37bf082b7aef8d3a88e380097310678"
35 ]
36}