this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A mutation tester for OCaml"
4description: """
5Mutaml is a mutation testing tool for OCaml.
6It uses a ppxlib-based preprocessor to make a series of small
7breaking changes to a program's source code and then runs
8the program's testsuite for each of them to catch uncaught
9misbehaviour.
10"""
11maintainer: ["Jan Midtgaard <mail@janmidtgaard.dk>"]
12authors: ["Jan Midtgaard <mail@janmidtgaard.dk>"]
13license: "BSD-2-Clause"
14tags: ["test" "mutation testing"]
15homepage: "https://github.com/jmid/mutaml"
16doc: "https://github.com/jmid/mutaml"
17bug-reports: "https://github.com/jmid/mutaml/issues"
18depends: [
19 "dune" {>= "3.0"}
20 "ocaml" {>= "4.12.0"}
21 "ppxlib" {>= "0.28.0"}
22 "ppx_yojson_conv" {>= "0.14.0"}
23 "stdlib-random"
24 "conf-timeout"
25 "conf-which"
26 "conf-diffutils"
27 "ocaml-compiler-libs" {>= "v0.12.0"}
28 "ppx_derivers" {>= "1.2.1"}
29 "yojson" {>= "2.0.0"}
30 "ounit2" {with-test}
31 "odoc" {with-doc}
32]
33build: [
34 ["dune" "subst"] {dev}
35 [
36 "dune"
37 "build"
38 "-p"
39 name
40 "-j"
41 jobs
42 "@install"
43 "@runtest" {with-test}
44 "@doc" {with-doc}
45 ]
46]
47dev-repo: "git+https://github.com/jmid/mutaml.git"
48url {
49 src: "https://github.com/jmid/mutaml/archive/refs/tags/0.2.tar.gz"
50 checksum: [
51 "md5=61addf5724238b477033e654412651eb"
52 "sha512=bd9efe0bd5a1098f03adc199f688b265362223bc5509bc1d3255696ba0e5e22f08b66434367e0a15f00e02dd074fd83dc2da094867a80c91ff397ffc07734778"
53 ]
54}