-
Notifications
You must be signed in to change notification settings - Fork 5
/
pp.opam
49 lines (45 loc) · 1.36 KB
/
pp.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
47
48
49
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pretty-printing"
description: """
This library provides minimal support for Canonical S-expressions
[1]. Canonical S-expressions are a binary encoding of S-expressions
that is super simple and well suited for communication between
programs.
This library only provides a few helpers for simple applications. If
you need more advanced support, such as parsing from more fancy input
sources, you should consider copying the code of this library given
how simple parsing S-expressions in canonical form is.
To avoid a dependency on a particular S-expression library, the only
module of this library is parameterised by the type of S-expressions.
[1] https://en.wikipedia.org/wiki/Canonical_S-expressions
"""
maintainer: ["Jeremie Dimino <[email protected]>"]
authors: [
"Jane Street Group, LLC <[email protected]>"
"Jeremie Dimino <[email protected]>"
]
license: "MIT"
homepage: "https://github.com/diml/pp"
doc: "https://diml.github.io/pp/"
bug-reports: "https://github.com/diml/pp/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.04.0"}
"ppx_expect" {with-test}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/diml/pp.git"