-
Notifications
You must be signed in to change notification settings - Fork 4
/
dum.opam
33 lines (33 loc) · 1008 Bytes
/
dum.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Inspect the runtime representation of arbitrary OCaml values"
description: """
Dum is a library for inspecting the runtime representation of
arbitrary OCaml values. Shared or cyclic data are detected
and labelled. This guarantees that printing would always
terminate. This makes it possible to print values such as closures,
objects or exceptions in depth and without risk."""
maintainer: ["martin@mjambon.com"]
authors: ["Martin Jambon" "Jean-Christophe Filliatre" "Richard W.M. Jones"]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/mjambon/dum"
bug-reports: "https://github.com/mjambon/dum/issues"
depends: [
"dune" {>= "2.0"}
"easy-format"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mjambon/dum.git"