Skip to content

Commit

Permalink
Backport dependency fixes
Browse files Browse the repository at this point in the history
Note: does not build on MacOS, I don't know how to fix yet.
  • Loading branch information
lukstafi committed Apr 21, 2023
1 parent 93bfc28 commit fae4f32
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
(name ppx_minidebug)
(synopsis "Debug logs for selected functions and let-bindings")
(description "A poor man's `ppx_debug` with formatted logs of let-bound values, function arguments and results.")
(depends ocaml dune ppx_deriving ppx_sexp_conv ppxlib printbox printbox-text printbox-html ptime sexplib0)
(depends
(ocaml (>= 4.08))
dune ppx_deriving ppx_sexp_conv
(ppxlib (>= 0.25.0))
printbox printbox-text printbox-html ptime sexplib0
(ppx_expect (and :with-test (>= v0.9.0))))
(tags
(logger debugger "printf debugging")))
5 changes: 3 additions & 2 deletions ppx_minidebug.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ 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"
"ocaml" {>= "4.08"}
"dune" {>= "3.7"}
"ppx_deriving"
"ppx_sexp_conv"
"ppxlib"
"ppxlib" {>= "0.25.0"}
"printbox"
"printbox-text"
"printbox-html"
"ptime"
"sexplib0"
"ppx_expect" {with-test & >= "v0.9.0"}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit fae4f32

Please sign in to comment.