···11+opam-version: "2.0"
22+synopsis: "Pretty-printing library"
33+description: """
44+55+This library provides a lean alternative to the Format [1] module of
66+the OCaml standard library. It aims to make it easy for users to do
77+the right thing. If you have tried Format before but find its API
88+complicated and difficult to use, then Pp might be a good choice for
99+you.
1010+1111+Pp uses the same concepts of boxes and break hints, and the final
1212+rendering is done to formatter from the Format module. However it
1313+defines its own algebra which some might find easier to work with and
1414+reason about. No previous knowledge is required to start using this
1515+library, however the various guides for the Format module such as this
1616+one [2] should be applicable to Pp as well.
1717+1818+[1]: https://caml.inria.fr/pub/docs/manual-ocaml/libref/Format.html
1919+[2]: http://caml.inria.fr/resources/doc/guides/format.en.html
2020+"""
2121+maintainer: ["Jeremie Dimino <jeremie@dimino.org>"]
2222+authors: [
2323+ "Jane Street Group, LLC <opensource@janestreet.com>"
2424+ "Jeremie Dimino <jeremie@dimino.org>"
2525+]
2626+license: "MIT"
2727+homepage: "https://github.com/ocaml-dune/pp"
2828+doc: "https://ocaml-dune.github.io/pp/"
2929+bug-reports: "https://github.com/ocaml-dune/pp/issues"
3030+depends: [
3131+ "dune" {>= "2.8"}
3232+ "ocaml" {>= "4.08"}
3333+ "ppx_expect" {with-test}
3434+ "ocamlformat" {with-dev-setup & = "0.26.2"}
3535+ "odoc" {with-doc}
3636+]
3737+build: [
3838+ ["dune" "subst"] {dev}
3939+ [
4040+ "dune"
4141+ "build"
4242+ "-p"
4343+ name
4444+ "-j"
4545+ jobs
4646+ "@install"
4747+ "@runtest" {with-test}
4848+ "@doc" {with-doc}
4949+ ]
5050+]
5151+dev-repo: "git+https://github.com/ocaml-dune/pp.git"
5252+url {
5353+ src:
5454+ "https://github.com/ocaml-dune/pp/releases/download/2.0.0/pp-2.0.0.tbz"
5555+ checksum: [
5656+ "sha256=8651351518b092b4a2def4e08171c276152f92fb6a84a8b19b6b929ccdb44419"
5757+ "sha512=78cb68f35c0b975dd1e91bd83d5e33bcec1ee642431585d55864c483c70a032755dfcf21ec5697691e7e7554381ddb580639fd149e28ba6f74d04d2ee43d360d"
5858+ ]
5959+}
6060+x-commit-hash: "b6741dd41ef5fc5bda8b3640097ac29818a43577"