this repo has no description
1opam-version: "2.0" 2maintainer: "martin@mjambon.com" 3authors: [ 4 "Martin Jambon" 5 "Jean-Christophe Filliatre" 6 "Richard W.M. Jones" 7] 8homepage: "https://github.com/mjambon/dum" 9bug-reports: "https://github.com/mjambon/dum/issues" 10dev-repo: "git+https://github.com/mjambon/dum.git" 11license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 12build: make 13remove: [["ocamlfind" "remove" "dum"]] 14depends: ["ocaml" {< "5.0.0"} "ocamlfind" "easy-format"] 15install: [make "install"] 16synopsis: "Inspect the runtime representation of arbitrary OCaml values" 17description: """ 18Dum is a library for inspecting the runtime representation of 19arbitrary OCaml values. Shared or cyclic data are detected 20and labelled. This guarantees that printing would always 21terminate. This makes it possible to print values such as closures, 22objects or exceptions in depth and without risk.""" 23flags: light-uninstall 24url { 25 src: "https://github.com/mjambon/dum/archive/v1.0.1.tar.gz" 26 checksum: [ 27 "sha256=973166d4a371c704154fa8121af4bf4c1906976d74f04344fa43d10acb8c899a" 28 "md5=aa5bd1ea89d2f5881c18652545361a1c" 29 ] 30}