-
Notifications
You must be signed in to change notification settings - Fork 2
/
bwd.opam
26 lines (26 loc) · 1.01 KB
/
bwd.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
opam-version: "2.0"
name: "bwd"
synopsis: "Backward lists"
description: """
This OCaml package defines backward lists that are isomorphic to lists.
They are useful when one wishes to give a different type to the lists that are semantically in reverse.
In our experience, it is easy to miss List.rev or misuse List.rev_append when both semantically forward and backward lists are present.
With backward lists having a different type, it is impossible to make those mistakes.
"""
maintainer: "favonia <[email protected]>"
authors: "The RedPRL Development Team"
license: "Apache-2.0"
homepage: "https://github.com/RedPRL/ocaml-bwd"
bug-reports: "https://github.com/RedPRL/ocaml-bwd/issues"
dev-repo: "git+https://github.com/RedPRL/ocaml-bwd.git"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.12"}
"qcheck-core" {>= "0.18" & with-test}
"odoc" {>= "2.0" & with-doc}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]