-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhashcons.opam
34 lines (34 loc) · 1022 Bytes
/
hashcons.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
27
28
29
30
31
32
33
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml hash-consing library"
description: """
The technique is described in this paper:
*Sylvain Conchon and Jean-Christophe Filliâtre.* Type-Safe Modular Hash-Consing.
In ACM SIGPLAN Workshop on ML, Portland, Oregon, September 2006.
The PDF is available at
<https://www.lri.fr/~filliatr/ftp/publis/hash-consing2.pdf>"""
maintainer: ["Jean-Christophe Filliatre <[email protected]>"]
authors: ["Jean-Christophe Filliatre <[email protected]>"]
license: "LGPL-2.1"
homepage: "https://github.com/backtracking/ocaml-hashcons"
bug-reports: "https://github.com/backtracking/ocaml-hashcons/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.12"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/backtracking/ocaml-hashcons.git"