-
Notifications
You must be signed in to change notification settings - Fork 17
/
dune-project
54 lines (51 loc) · 1.19 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
(lang dune 2.2)
(name coq-bot)
(generate_opam_files true)
(source (github coq/bot))
(authors "Théo Zimmermann")
(maintainers "Théo Zimmermann <[email protected]>")
(license MIT)
(package
(name coq-bot)
(synopsis "A (Coq Development Team) bot written in OCaml")
(depends
(dune (>= 2.2))
(base (>= v0.14.0))
(lwt (>= 5.6.0))
(cohttp-lwt (>= 2.5.4))
(cohttp-lwt-unix (>= 2.5.4))
(lwt_ssl (>= 1.1.3))
(ssl (>= 0.5.9))
(mirage-crypto (>= 1.0.0))
(mirage-crypto-rng (>= 1.0.0))
(mirage-crypto-rng-lwt (>= 1.0.0))
(stdio (>= v0.14.0))
(yojson (>= 1.7.0))
(bot-components :dev)
(toml (>= 7.0.0))
(ppx_expect (>= v0.15.1))
(odoc (and (>= 1.5.2) :with-doc)))
)
(package
(name bot-components)
(synopsis "Building blocks to make your own bots")
(depends
(dune (>= 2.2))
(base (>= v0.14.0))
(lwt (>= 5.3.0))
(cohttp-lwt (>= 2.5.4))
(cohttp-lwt-unix (>= 2.5.4))
(lwt_ssl (>= 1.1.3))
(ssl (>= 0.5.9))
(stdio (>= v0.14.0))
(ohex (>= 0.2.0))
(mirage-crypto (>= 1.0.0))
(eqaf (>= 0.7))
(yojson (>= 1.7.0))
(graphql_ppx (>= 1.2.0))
(x509 (>= 1.0.0))
(ISO8601 (>= 0.2.0))
(camlzip (>= 1.08))
(digestif (>= 1.2.0))
(odoc (and (>= 1.5.2) :with-doc)))
)