-
Notifications
You must be signed in to change notification settings - Fork 5
/
dune-project
40 lines (35 loc) · 1.27 KB
/
dune-project
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
(lang dune 2.8)
(name pp)
(license MIT)
(maintainers "Jeremie Dimino <[email protected]>")
(authors
"Jane Street Group, LLC <[email protected]>"
"Jeremie Dimino <[email protected]>")
(source (github ocaml-dune/pp))
(documentation "https://ocaml-dune.github.io/pp/")
(generate_opam_files true)
(package
(name pp)
(depends
(ocaml (>= 4.08))
(ppx_expect :with-test)
(ocamlformat
(and
:with-dev-setup
(= 0.26.2))))
(synopsis "Pretty-printing library")
(description "
This library provides a lean alternative to the Format [1] module of
the OCaml standard library. It aims to make it easy for users to do
the right thing. If you have tried Format before but find its API
complicated and difficult to use, then Pp might be a good choice for
you.
Pp uses the same concepts of boxes and break hints, and the final
rendering is done to formatter from the Format module. However it
defines its own algebra which some might find easier to work with and
reason about. No previous knowledge is required to start using this
library, however the various guides for the Format module such as this
one [2] should be applicable to Pp as well.
[1]: https://caml.inria.fr/pub/docs/manual-ocaml/libref/Format.html
[2]: http://caml.inria.fr/resources/doc/guides/format.en.html
"))