-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdune-project
40 lines (36 loc) · 1.02 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
(lang dune 3.0)
(name mutaml)
(formatting
(enabled_for dune))
(generate_opam_files)
(package
(name mutaml)
(synopsis "A mutation tester for OCaml")
(license "BSD-2-Clause")
(version "0.3")
(description
"\| Mutaml is a mutation testing tool for OCaml.
"\| It uses a ppxlib-based preprocessor to make a series of small
"\| breaking changes to a program's source code and then runs
"\| the program's testsuite for each of them to catch uncaught
"\| misbehaviour.
)
(source (github jmid/mutaml))
(documentation "https://github.com/jmid/mutaml")
(authors "Jan Midtgaard <[email protected]>")
(maintainers "Jan Midtgaard <[email protected]>")
(tags ("test" "mutation testing"))
(depends
(ocaml (>= 4.12.0))
(ppxlib (>= 0.28.0))
(ppx_yojson_conv (>= 0.14.0))
stdlib-random
conf-timeout
conf-which
conf-diffutils
;; transitive lower versions to avoid CI errors
(ocaml-compiler-libs (>= v0.12.0))
(ppx_derivers (>= 1.2.1))
(yojson (>= 2.0.0))
(ppx_deriving :with-test)
(ounit2 :with-test)))