-
Notifications
You must be signed in to change notification settings - Fork 15
/
dune-project
45 lines (42 loc) · 1.18 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
(lang dune 2.7)
(name progress)
(implicit_transitive_deps false)
(generate_opam_files true)
(source (github CraigFe/progress))
(license MIT)
(maintainers "Craig Ferguson <[email protected]>")
(authors "Craig Ferguson <[email protected]>")
(package
(name progress)
(synopsis "User-definable progress bars")
(description "\
A progress bar library for OCaml, featuring a DSL for declaratively specifying
progress bar formats. Supports rendering multiple progress bars simultaneously.\
")
(documentation https://CraigFe.github.io/progress/)
(depends
(ocaml (>= 4.08.0))
(terminal (= :version))
(fmt (>= 0.8.5))
(logs (>= 0.7.0))
(mtime (>= 2.0.0))
(uucp (>= 2.0.0))
(uutf (>= 1.0.0))
vector
(optint (>= 0.1.0))
(alcotest (and :with-test (>= 1.4.0)))
(astring :with-test)))
(package
(name terminal)
(synopsis "Basic utilities for interacting with terminals")
(description "Basic utilities for interacting with terminals")
(documentation https://CraigFe.github.io/progress/)
(depends
(ocaml (>= 4.03.0))
(uucp (>= 2.0.0))
(uutf (>= 1.0.0))
stdlib-shims
(alcotest (and :with-test (>= 1.4.0)))
(fmt :with-test)
(astring :with-test)
(mtime (and :with-test (>= 2.0.0)))))