-
Notifications
You must be signed in to change notification settings - Fork 1
/
ppx_minidebug.opam
46 lines (46 loc) · 1.22 KB
/
ppx_minidebug.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
35
36
37
38
39
40
41
42
43
44
45
46
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "2.0.2"
synopsis: "Debug logs for selected functions and let-bindings"
description:
"Formatted logs of let-bound values, function arguments and results; `if` and `match` branches taken. Optionally, as collapsible HTML trees with highlights."
maintainer: ["Lukasz Stafiniak <[email protected]>"]
authors: ["Lukasz Stafiniak"]
license: "LGPL-2.1-or-later"
tags: ["logger" "debugger" "printf debugging"]
homepage: "https://github.com/lukstafi/ppx_minidebug"
doc: "https://lukstafi.github.io/ppx_minidebug/ppx_minidebug"
bug-reports: "https://github.com/lukstafi/ppx_minidebug/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "3.7"}
"ppx_deriving"
"ppx_sexp_conv"
"ppxlib" {>= "0.26.0"}
"printbox" {>= "0.11"}
"printbox-text" {>= "0.11"}
"printbox-html" {= "0.11"}
"printbox-md" {>= "0.11"}
"ptime"
"mtime" {>= "2.0"}
"re"
"sexplib0"
"ppx_expect" {with-test & >= "v0.9.0"}
"odoc" {with-doc}
"md2mld"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lukstafi/ppx_minidebug.git"