-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune-project
More file actions
120 lines (107 loc) · 1.79 KB
/
dune-project
File metadata and controls
120 lines (107 loc) · 1.79 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
(lang dune 3.18)
(name auto-format)
(generate_opam_files)
(license MIT)
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <opensource@mbarbin.org>")
(source
(github mbarbin/auto-format))
(documentation "https://mbarbin.github.io/auto-format/")
(using menhir 3.0)
(implicit_transitive_deps false)
(package
(name auto-format)
(synopsis "Build auto-format commands for custom languages")
(depends
(ocaml
(>= 5.2))
(cmdlang
(>= 0.0.9))
(dyn
(>= 3.18))
(fpath
(>= 0.7.3))
(fpath-sexp0
(>= 0.2.2))
(loc
(>= 0.2.2))
(ordering
(>= 3.18))
(parsing-utils
(>= 0.2.3))
(pp
(>= 2.0.0))
(pplumbing-err
(>= 0.0.16))
(pplumbing-log-cli
(>= 0.0.16))
(sexplib0
(>= v0.17))))
(package
(name auto-format-tests)
(synopsis "Tests for auto-format")
(depends
(ocaml
(>= 5.2))
(auto-format
(= :version))
(fpath
(>= 0.7.3))
(fpath-sexp0
(>= 0.2.2))
(loc
(>= 0.2.2))
(pp
(>= 2.0.0))
(pplumbing-err
(>= 0.0.16))
(ppx_expect
(>= v0.17))
(ppxlib
(>= 0.33))))
(package
(name auto-format-example)
(synopsis "Example usage of auto-format library")
(allow_empty)
(depends
(ocaml
(>= 5.2))
(auto-format
(= :version))
(cmdlang
(>= 0.0.9))
(cmdlang-cmdliner-err-runner
(>= 0.0.16))
(loc
(>= 0.2.2))
(menhir
(>= 20220210))
(parsing-utils
(>= 0.2.3))
(pp
(>= 2.0.0))
(sexplib0
(>= v0.17))))
(package
(name auto-format-dev)
(synopsis "Package to regroup dev targets, documentation, and more")
(allow_empty)
(depends
(ocaml
(>= 5.2))
(ocamlformat
(= 0.29.0))
(auto-format
(= :version))
(auto-format-example
(= :version))
(auto-format-tests
(= :version))
(bisect_ppx
(>= 2.8.3))
(ppx_js_style
(>= v0.17))
(ppxlib
(>= 0.33))
(sherlodoc
(>= 0.2))))