-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
61 lines (52 loc) · 1.12 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
(lang dune 3.4)
(name stramon)
(generate_opam_files true)
(source
(github darrenldl/stramon))
(authors "Darren Ldl")
(maintainers "Darren Ldl")
(license MIT)
(package
(name stramon-lib)
(synopsis "Process behavior monitoring library based on strace")
(description "
Stramon-lib is primarily designed to power Stramon,
or to be used in similar fashion of process monitoring.
")
(documentation https://ocaml.org/p/stramon-lib)
(depends
(ocaml (>= "4.08"))
base-unix
dune
seq
(fmt (>= "0.9.0"))
(angstrom (>= "0.15.0"))
(containers (>= "3.6"))
(alcotest :with-test)
(qcheck-alcotest :with-test)
(qcheck :with-test)
)
(tags
(
"strace"
"process monitoring"
))
)
(package
(name stramon)
(synopsis "Process behavior monitoring utility based on strace")
(description "")
(documentation https://github.com/darrenldl/stramon)
(depends
ocaml
dune
(stramon-lib (>= "0.3.0"))
(timedesc (>= "0.9.1"))
(containers (>= "3.6"))
)
(tags
("strace"
"process monitoring"
))
)
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project