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] {ocaml:native} 10 [make "byte"] {!ocaml:native} 11 [make "check"] {with-test} 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "enumerators"] 15depends: [ 16 "ocaml" {>= "4.02.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "ounit" {with-test} 20] 21depopts: [ 22 "bisect_ppx" {with-test} 23] 24synopsis: "Finite lazy enumerators" 25description: """ 26This library enables you to work with large sequences of elements. It provides 27constructors and combinators to build finite sequences that can be iterated through with a 28low memory footprint.""" 29flags: light-uninstall 30url { 31 src: "https://github.com/cryptosense/enumerators/archive/v0.1.1.tar.gz" 32 checksum: [ 33 "sha256=6b19a08f6971ba906302172b0abcea04f20d90d48d5fc2c1e95ee0a3bcb3476a" 34 "md5=8e5c1392d4aa12e0baf49076cf650c9b" 35 ] 36}