this repo has no description
1opam-version: "2.0" 2synopsis: "Debug logs for selected functions and let-bindings" 3description: 4 "A poor man's `ppx_debug` with formatted logs of let-bound values, function arguments and results." 5maintainer: ["Lukasz Stafiniak"] 6authors: ["Lukasz Stafiniak"] 7license: "LGPL-2.1-or-later" 8tags: ["logger" "debugger" "printf debugging"] 9homepage: "https://github.com/lukstafi/ppx_minidebug" 10doc: "https://lukstafi.github.io/ppx_minidebug/ppx_minidebug" 11bug-reports: "https://github.com/lukstafi/ppx_minidebug/issues" 12depends: [ 13 "ocaml" {>= "4.08"} 14 "dune" {>= "3.7"} 15 "ppx_deriving" 16 "ppx_sexp_conv" 17 "ppxlib" {>= "0.25.0"} 18 "printbox" 19 "printbox-text" 20 "printbox-html" 21 "ptime" 22 "sexplib0" 23 "ppx_expect" {with-test & >= "v0.9.0"} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/lukstafi/ppx_minidebug.git" 41url { 42 src: 43 "https://github.com/lukstafi/ppx_minidebug/releases/download/0.3.3/ppx_minidebug-0.3.3.tbz" 44 checksum: [ 45 "sha256=c534384feb23c06dc3bda15407e4111dbcf0f431fe0eae2cc5a7a3f9c7d55538" 46 "sha512=fd81812a1e064df839dd20965cc0a680e5af99a453170f08404b94abac9cd8cb7920e13e88ea127de74e472ca996556c10b2aa6d90ca599c43af1201e462465e" 47 ] 48} 49x-commit-hash: "903d27afd96a819d21087c89f1cbd9775fef1f2d"