-
Notifications
You must be signed in to change notification settings - Fork 21
/
dune-project
50 lines (43 loc) · 1.54 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
(lang dune 3.5)
(generate_opam_files true)
(formatting (enabled_for dune))
(name lwd)
(source (github let-def/lwd))
(license MIT)
(authors "Frédéric Bour")
(maintainers "[email protected]")
(package
(name lwd)
(synopsis "Lightweight reactive documents")
(documentation "https://let-def.github.io/lwd/doc")
(depends dune seq (ocaml (>= "4.03"))
(qtest :with-test)
(qcheck :with-test)))
(package
(name nottui)
(synopsis "UI toolkit for the terminal built on top of Notty and Lwd")
(documentation "https://let-def.github.io/lwd/doc")
(depends (lwd (= :version)) (notty (>= 0.2))
(cbor :with-test) ; for the examples
(containers :with-test))) ; for the examples
(package
(name tyxml-lwd)
(synopsis "Make reactive webpages in Js_of_ocaml using Tyxml and Lwd")
(documentation "https://let-def.github.io/lwd/doc")
(depends (lwd (= :version)) (tyxml (>= 4.5.0)) js_of_ocaml js_of_ocaml-ppx))
(package
(name brr-lwd)
(synopsis "Make reactive webpages in Js_of_ocaml using Brr and Lwd")
(documentation "https://let-def.github.io/lwd/doc")
(depends (lwd (= :version)) (brr (>= 0.0.4)) js_of_ocaml
(js_of_ocaml-lwt :with-test))) ; for the examples
(package
(name nottui-pretty)
(synopsis "A pretty-printer based on PPrint rendering UIs")
(documentation "https://let-def.github.io/lwd/doc")
(depends (nottui (= :version)) (notty (>= 0.2))))
(package
(name nottui-lwt)
(synopsis "Run Nottui UIs in Lwt")
(documentation "https://let-def.github.io/lwd/doc")
(depends lwt (nottui (= :version)) (notty (>= 0.2))))