-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdune-project
63 lines (54 loc) · 1.31 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
(lang dune 3.11)
(using menhir 2.0)
(name belenios)
(version 3.0)
(generate_opam_files true)
(implicit_transitive_deps false)
(license AGPL-3)
(authors "Stéphane Glondu")
(maintainers "[email protected]")
(package
(name belenios-platform-native)
(synopsis "Native implementation of the Belenios platform")
(depends
(cryptokit (>= 1.17))))
(package
(name belenios-platform-js)
(synopsis "JavaScript implementation of the Belenios platform")
(depends
(js_of_ocaml (>= 4.0.0))
(js_of_ocaml-ppx (>= 4.0.0))))
(package
(name belenios-platform)
(synopsis "Definition of the Belenios platform"))
(package
(name belenios-lib)
(synopsis "Belenios library")
(depends
(yojson (>= 2.0.2))
(atdgen (>= 2.10.0))
(belenios-platform (= :version))))
(package
(name belenios-tool)
(synopsis "Belenios command-line tool")
(depends
(cmdliner (>= 1.1.0))
(belenios-platform-native (= :version))
(belenios-lib (= :version))))
(package
(name belenios-server)
(synopsis "Belenios server")
(depends
(belenios-platform-native (= :version))
(belenios-lib (= :version))
(lwt (>= 5.6.1))
(calendar (>= 2.04))
(eliom (>= 10.0.0))
(ocamlnet (>= 4.1.9-1))))
(package
(name belenios)
(synopsis "Belenios meta-package")
(allow_empty)
(depends
(belenios-tool (= :version))
(belenios-server (= :version))))