-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
80 lines (68 loc) · 1.26 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
(lang dune 2.7)
(generate_opam_files true)
(name ask)
(version 0.2.0)
(authors "Marc Biedermann")
(source
(github uzh/ask))
(license MIT)
(maintainers "[email protected]")
(homepage "https://github.com/uzh/ask")
(bug_reports "https://github.com/uzh/ask/-/issues")
(documentation "https://github.com/uzh/ask")
(package
(name ask)
(synopsis "Create/Answer questionnaires")
(description "Generating and answering questions should be easy")
(depends
dune
(ocaml
(>= 4.11))
(sihl
(= 0.4.0))
(sihl-storage
(= 0.4.0))
(conformist
(= 0.4.0))
(lwt_ssl
(>= 1.1.3))
(ppx_fields_conv
(>= 0.13.0))
(alcotest-lwt
(and
(>= 1.3.0)
:with-test))
(caqti-driver-mariadb
(and
(>= 1.2.1)
:with-test))
(ocamlformat :dev)))
(package
(name ask-integrator)
(synopsis "Link questionnaires to an uuid of 'a type")
(description "Generate a link between questionnaires and types")
(depends
dune
(ocaml
(>= 4.11))
(ask
(= :version))
(sihl
(= 0.4.0))
(sihl-storage
(= 0.4.0))
(conformist
(= 0.4.0))
(lwt_ssl
(>= 1.1.3))
(ppx_fields_conv
(>= 0.13.0))
(alcotest-lwt
(and
(>= 1.3.0)
:with-test))
(caqti-driver-mariadb
(and
(>= 1.2.1)
:with-test))
(ocamlformat :dev)))