-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
52 lines (47 loc) · 982 Bytes
/
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
(lang dune 3.7)
(implicit_transitive_deps false)
(generate_opam_files true)
(using mdx 0.3)
(name scrutiny)
(version 0.1.0)
(authors "Jonathan Coates")
(license BSD-3-Clause)
(source (github squiddev/scrutiny))
(maintainers "Jonathan Coates <[email protected]>")
(package
(name scrutiny)
(synopsis "Bits and bobs for wrangling my server")
(description "A home grown infrastructure management and monitoring toolkit, because I'm silly.")
(depends
(ocaml (>= 5.1))
;; Build-time
(ocamlformat :dev)
(ocaml-lsp-server :dev)
; Core
base-threads
base-unix
cmdliner
(cohttp (>= 6.0))
(cohttp-eio (>= 6.0))
(containers (>= 3.6))
digestif
(eio (>= 0.13))
eio_main
fmt
fpath
jingoo
logs
lwt-dllist
ocurl
ppx_yojson_conv
ppx_yojson_conv_lib
(progress (>= 0.2.0))
(prometheus (= 1.1))
re
result
uri
yojson
; Test
(mdx :with-test)
(alcotest :with-test)
))