this repo has no description
1opam-version: "2.0"
2synopsis: "Unbounded loops with continues and breaks"
3description: """
4A small control-flow utility for unbounded loops with support for `break` and
5`continue`ing loops.
6
7By default it will loop infinitely, but it won't get in the way of unbounded
8exceptions or other unhandled effects"""
9maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"]
10authors: ["Leandro Ostera <leandro@abstractmachines.dev>"]
11license: "MIT"
12tags: ["topics" "control flow" "loop" "loops"]
13homepage: "https://github.com/leostera/loop"
14bug-reports: "https://github.com/leostera/loop/issues"
15depends: [
16 "ocaml" {>= "5.0"}
17 "dune" {>= "3.11"}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/leostera/loop.git"
35url {
36 src:
37 "https://github.com/leostera/loop/releases/download/0.0.1/loop-0.0.1.tbz"
38 checksum: [
39 "sha256=2b1ca83ae07257212f4dccd962a33d84a28fa33c792134bb1d2f8b65dff8b2ac"
40 "sha512=ae285fd979a47702108fbf30f2d257a7190c308c6ea71e707a9d7cad29d9ed42f469696ff140c75867648450b482b66238ae79b1b4ac051de12dd07685061a9d"
41 ]
42}
43x-commit-hash: "19ff6d0a1c067c854b29037ef166f82b3a96307e"