this repo has no description
1opam-version: "2.0"
2maintainer: "Bertrand Bonnefoy-Claudet <bertrand@cryptosense.com>"
3authors: "Bertrand Bonnefoy-Claudet <bertrand@cryptosense.com>"
4homepage: "https://github.com/cryptosense/enumerators"
5bug-reports: "https://github.com/cryptosense/enumerators/issues"
6license: "BSD-2-Clause"
7dev-repo: "git+https://github.com/cryptosense/enumerators.git"
8build: [
9 [make]
10 [make "check"] {with-test}
11]
12install: [make "install"]
13remove: ["ocamlfind" "remove" "enumerators"]
14depends: [
15 "ocaml" {>= "4.02.0"}
16 "ocamlfind" {build}
17 "ounit" {with-test}
18 "ocamlbuild" {build}
19]
20depopts: [
21 "bisect_ppx" {with-test}
22]
23synopsis: "Finite lazy enumerators"
24description: """
25This library enables you to work with large sequences of elements. It provides
26constructors and combinators to build finite sequences that can be iterated through with a
27low memory footprint."""
28flags: light-uninstall
29url {
30 src: "https://github.com/cryptosense/enumerators/archive/v0.1.0.tar.gz"
31 checksum: [
32 "sha256=fee26f48b1c3c74f3b65eb72b61b824b5b1ae8f3a791abc86f16219c1b3cde5f"
33 "md5=ec136adc88eecdadc3578d42aa1d6f5b"
34 ]
35}