File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Backward lists"
3+ description: """
4+ This OCaml package defines backward lists that are isomorphic to lists.
5+ They are useful when one wishes to give a different type to the lists that are semantically in reverse.
6+ In our experience, it is easy to miss List.rev or misuse List.rev_append when both semantically forward and backward lists are present.
7+ With backward lists having a different type, it is impossible to make these mistakes.
8+ """
9+ maintainer: "favonia <
[email protected] >"
10+ authors: "The RedPRL Development Team"
11+ license: "Apache-2.0"
12+ homepage: "https://github.com/RedPRL/ocaml-bwd"
13+ bug-reports: "https://github.com/RedPRL/ocaml-bwd/issues"
14+ dev-repo: "git+https://github.com/RedPRL/ocaml-bwd.git"
15+ depends: [
16+ "dune" {>= "2.0"}
17+ "ocaml" {>= "4.08.0"}
18+ "odoc" {with-doc}
19+ ]
20+ build: [
21+ ["dune" "build" "-p" name "-j" jobs]
22+ ["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
23+ ["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
24+ ]
25+ url {
26+ src: "https://github.com/RedPRL/ocaml-bwd/archive/1.0.0.tar.gz"
27+ checksum: [
28+ "md5=e06992507455ffb10a1c379322d7fb6e"
29+ "sha512=85066a9866dc90a0d138cc4d0688476a3ca96ce7454dc953fdadee51cb061201d0dc07db0b1c2ff2335f45dbfaaa9cbe53fc7724221f15d58604fd7fa1bbd22d"
30+ ]
31+ }
You can’t perform that action at this time.
0 commit comments