-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
129 lines (118 loc) · 1.85 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
(lang dune 3.17)
(name fpath-base)
(generate_opam_files)
(license MIT)
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <opensource@mbarbin.org>")
(source
(github mbarbin/fpath-base))
(documentation "https://mbarbin.github.io/fpath-base/")
(implicit_transitive_deps false)
(package
(name fpath-base)
(synopsis "Adds a few functions to Fpath to use alongside Base")
(depends
(ocaml
(>= 5.2))
(base
(and
(>= v0.17)
(< v0.18)))
(fpath
(>= 0.7.3))
(fpath-sexp0
(= :version))))
(package
(name fpath-sexp0)
(synopsis
"Adds Fpath.sexp_of_t and defines 3 new modules: Fsegment, Absolute_path and Relative_path")
(depends
(ocaml
(>= 5.2))
(fpath
(>= 0.7.3))
(sexplib0
(and
(>= v0.17)
(< v0.18)))))
(package
(name fpath-base-tests)
(synopsis "Tests for fpath-base")
(depends
(ocaml
(>= 5.2))
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))
(base
(and
(>= v0.17)
(< v0.18)))
(base_quickcheck
(and
(>= v0.17)
(< v0.18)))
(bisect_ppx
(and
:with-dev-setup
(>= 2.8.3)))
(expect_test_helpers_core
(and
(>= v0.17)
(< v0.18)))
(fpath
(>= 0.7.3))
(fpath-base
(= :version))
(fpath-sexp0
(= :version))
(ppx_compare
(and
(>= v0.17)
(< v0.18)))
(ppx_enumerate
(and
(>= v0.17)
(< v0.18)))
(ppx_expect
(and
(>= v0.17)
(< v0.18)))
(ppx_hash
(and
(>= v0.17)
(< v0.18)))
(ppx_here
(and
(>= v0.17)
(< v0.18)))
(ppx_js_style
(and
:with-dev-setup
(>= v0.17)
(< v0.18)))
(ppx_let
(and
(>= v0.17)
(< v0.18)))
(ppx_sexp_conv
(and
(>= v0.17)
(< v0.18)))
(ppx_sexp_value
(and
(>= v0.17)
(< v0.18)))
(ppxlib
(>= 0.33))
(re
(>= 1.8.0))
(sexp_pretty
(and
(>= v0.17)
(< v0.18)))
(stdio
(and
(>= v0.17)
(< v0.18)))))