-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
101 lines (91 loc) · 1.39 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
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
(lang dune 3.17)
(name loc)
(generate_opam_files)
(license MIT)
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <[email protected]>")
(source
(github mbarbin/loc))
(documentation "https://mbarbin.github.io/loc/")
(implicit_transitive_deps false)
(package
(name loc)
(synopsis "Representing ranges of lexing positions from parsed files")
(depends
(ocaml
(>= 4.14))
(fpath
(>= 0.7.3))
(sexplib0
(and
(>= v0.16)
(< v0.18)))
(stdune
(>= 3.17))))
(package
(name loc-tests)
(synopsis "Tests for loc")
(depends
(ocaml
(>= 4.14))
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))
(base
(and
(>= v0.16)
(< v0.18)))
(bisect_ppx
(and
:with-dev-setup
(>= 2.8.3)))
(expect_test_helpers_core
(and
(>= v0.16)
(< v0.18)))
(fpath
(>= 0.7.3))
(loc
(= :version))
(ppx_compare
(and
(>= v0.16)
(< v0.18)))
(ppx_enumerate
(and
(>= v0.16)
(< v0.18)))
(ppx_expect
(and
(>= v0.16)
(< v0.18)))
(ppx_hash
(and
(>= v0.16)
(< v0.18)))
(ppx_here
(and
(>= v0.16)
(< v0.18)))
(ppx_js_style
(and
:with-dev-setup
(>= v0.16)
(< v0.18)))
(ppx_let
(and
(>= v0.16)
(< v0.18)))
(ppx_sexp_conv
(and
(>= v0.16)
(< v0.18)))
(ppx_sexp_value
(and
(>= v0.16)
(< v0.18)))
(ppxlib
(>= 0.33))
(stdune
(>= 3.17))))