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"
7tags: "org:cryptosense"
8dev-repo: "git+https://github.com/cryptosense/enumerators.git"
9build: [
10 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"]
11 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "true"]
12 {with-test}
13 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.02.0"}
17 "ocamlbuild" {build}
18 "ocamlfind" {build}
19 "topkg" {build}
20 "ounit" {with-test}
21]
22synopsis: "Finite lazy enumerators"
23description: """
24This library enables you to work with large sequences of elements. It provides
25constructors and combinators to build finite sequences that can be iterated through with a
26low memory footprint."""
27url {
28 src: "https://github.com/cryptosense/enumerators/archive/v0.2.0.tar.gz"
29 checksum: [
30 "sha256=39c2c37361cb6cdb26244ee0e37a67b1fd3772e4436f8870f48eac10b67f305d"
31 "md5=93a00bdf11508962915b50be9c7d914a"
32 ]
33}