Skip to content

Commit 2fae1c9

Browse files
committed
Adjust deps for ppxlib-tools
Signed-off-by: Nathan Rebours <[email protected]>
1 parent 1d7ba08 commit 2fae1c9

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ details.
1818
migrations (#519, @NathanReb)
1919

2020
- Add ppxlib's AST pretty-printing utilities in `Ppxlib.Pp_ast` and
21-
a `ppxlib-pp-ast` executable (#517, @NathanReb)
21+
a `ppxlib-pp-ast` executable in a new separate `ppxlib-tools` package
22+
(#517, @NathanReb)
2223

2324
0.33.0 (2024-07-22)
2425
-------------------

bin/dune

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
(name pp_ast)
33
(public_name ppxlib-pp-ast)
44
(package ppxlib-tools)
5-
(libraries cmdliner ppxlib ppxlib.ast ppxlib.astlib ppxlib.stdppx
6-
stdlib-shims))
5+
(libraries cmdliner ppxlib ppxlib.ast ppxlib.astlib ppxlib.stdppx))

dune-project

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ allowing to inject a complex structured value into generated code.
5353
ppxlib-pp-ast: Command line tool to pretty print OCaml ASTs in a human readable
5454
format.")
5555
(depends
56+
(ocaml (>= 4.08.0))
5657
(ppxlib (= :version))
57-
cmdliner))
58+
(cmdliner (>= 1.3.0))))
5859

5960
(package
6061
(name ppxlib-bench)

ppxlib-tools.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ doc: "https://ocaml-ppx.github.io/ppxlib/"
1414
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
1515
depends: [
1616
"dune" {>= "2.7"}
17+
"ocaml" {>= "4.08.0"}
1718
"ppxlib" {= version}
18-
"cmdliner"
19+
"cmdliner" {>= "1.3.0"}
1920
"odoc" {with-doc}
2021
]
2122
build: [

0 commit comments

Comments
 (0)