File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Unbounded loops with continues and breaks"
3+ description: """
4+ A small control-flow utility for unbounded loops with support for `break` and
5+ `continue`ing loops.
6+
7+ By default it will loop infinitely, but it won't get in the way of unbounded
8+ exceptions or other unhandled effects"""
9+ maintainer: ["Leandro Ostera <
[email protected] >"]
10+ authors: ["Leandro Ostera <
[email protected] >"]
11+ license: "MIT"
12+ tags: ["topics" "control flow" "loop" "loops"]
13+ homepage: "https://github.com/leostera/loop"
14+ bug-reports: "https://github.com/leostera/loop/issues"
15+ depends: [
16+ "ocaml" {>= "5.0"}
17+ "dune" {>= "3.11"}
18+ "odoc" {with-doc}
19+ ]
20+ build: [
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+ ]
34+ dev-repo: "git+https://github.com/leostera/loop.git"
35+ url {
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+ }
43+ x-commit-hash: "19ff6d0a1c067c854b29037ef166f82b3a96307e"
You can’t perform that action at this time.
0 commit comments