-
Notifications
You must be signed in to change notification settings - Fork 1
/
dune-project
140 lines (125 loc) · 2.13 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
130
131
132
133
134
135
136
137
138
139
140
(lang dune 3.0)
(name timmy)
(version 1.1.6)
(generate_opam_files true)
(executables_implicit_empty_intf true)
(license LGPL-3.0-or-later)
(maintainers "mefyl <mefyl@gruntech.org>")
(authors "mefyl <mefyl@gruntech.org>")
(homepage https://github.com/mefyl/timmy)
(bug_reports https://github.com/mefyl/timmy/issues)
(source
(github mefyl/timmy))
(package
(name timmy)
(synopsis "Time and calendar library")
(depends
base
(fmt
(>= 0.8.7))
(ocaml
(>= 4.08.0))
ppx_here
(ppx_deriving
(>= 5.0))
ptime
; Test
(alcotest
(and
:with-test
(>= 1.4.0)))
; Doc
(odoc :with-doc)
; Dev
(cmdliner
(and :dev :with-test))
(opam-file-format
(and :dev :with-test))
(sexplib
(and :dev :with-test))
(stdio
(and :dev :with-test))
(shexp
(and :dev :with-test)))
(depopts js_of_ocaml js_of_ocaml-ppx schematic)
(conflicts
(schematic
(or
(< 0.18.2)
(= 0.20.0)
(>= 0.21.0)))))
(package
(name timmy-jsoo)
(synopsis "Js_of_ocaml bindings for Timmy")
(depends
ptime
ppx_here
(alcotest
(and
:with-test
(>= 1.4.0)))
(conf-npm :with-test)
fmt
js_of_ocaml
js_of_ocaml-ppx
(timmy
(= :version)))
(depopts schematic-jsoo)
(conflicts
(schematic-jsoo
(or
(< 0.18.2)
(>= 0.21.0)))))
(package
(name timmy-unix)
(synopsis "Unix clock implementation for Timmy")
(depends
ptime
(alcotest
(and
:with-test
(>= 1.4.0)))
(ezjsonm
(and
(= 1.3.0)
:build))
base
(conf-tzdata :with-test)
fmt
(logs
(>= 0.7.0))
(timmy
(= :version))))
(package
(name timmy-lwt)
(synopsis "Lwt utilities based on Timmy")
(depends
ppx_here
(ppx_deriving
(>= 5.0))
(alcotest
(and
:with-test
(>= 1.4.0)))
(alcotest-lwt
(and
:with-test
(>= 1.4.0)))
(logs
(>= 0.7.0))
lwt
(timmy
(= :version)))
(depopts js_of_ocaml-lwt))
; Timmy-js won't build on OCaml-CI as schematic is not available.
; (package
; (name timmy-js)
; (synopsis "Javascript binding of Timmy")
; (depends
; (conf-tzdata :with-test)
; (schematic-jsoo
; (and
; (>= 0.18.2)
; (< 0.19.0)))
; (timmy-jsoo
; (= :version))))