this repo has no description
1opam-version: "2.0" 2synopsis: "Inspect the runtime representation of arbitrary OCaml values" 3description: """ 4Dum is a library for inspecting the runtime representation of 5arbitrary OCaml values. Shared or cyclic data are detected 6and labelled. This guarantees that printing would always 7terminate. This makes it possible to print values such as closures, 8objects or exceptions in depth and without risk.""" 9maintainer: ["martin@mjambon.com"] 10authors: ["Martin Jambon" "Jean-Christophe Filliatre" "Richard W.M. Jones"] 11license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 12homepage: "https://github.com/mjambon/dum" 13bug-reports: "https://github.com/mjambon/dum/issues" 14depends: [ 15 "ocaml" {< "5.0.0"} 16 "dune" {>= "2.0"} 17 "easy-format" 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/mjambon/dum.git" 34url { 35 src: "https://github.com/mjambon/dum/releases/download/1.0.3/dum-1.0.3.tbz" 36 checksum: [ 37 "sha256=645a23503fc8a315530df1b2876c2f785b12cf80f5f692a41eb36e53e2c52651" 38 "sha512=f572326af6c295b8c27a54ef6d82309a71b0e31ab5f167b75ac0193350b2f59c8a355e61e83c6ad46e5562b355115f6a116148db097c648abbdd1d3d5573935c" 39 ] 40} 41x-commit-hash: "e22fd90b4576430313ebed2e43062ab7e0d91239"