-
Notifications
You must be signed in to change notification settings - Fork 0
/
less-power.opam
43 lines (43 loc) · 1.17 KB
/
less-power.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Framework for sandboxed testing of OCaml code"
description: """
This framework consists of a number of libraries and
executables for testing untrusted OCaml code.
Designed for running programming exercises fully automatically
and at scale.
"""
maintainer: ["Max Lang ([email protected])"]
authors: ["Benjamin Bott" "Max Lang" "Nico Petzendorfer"]
homepage: "https://github.com/just-max/less-power"
bug-reports: "https://github.com/just-max/less-power/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {= "5.1.1"}
"xmlm" {>= "1.4" & < "1.5"}
"fileutils" {>= "0.6" & < "0.7"}
"qcheck-core" {>= "0.21" & < "0.22"}
"ounit2" {>= "2.2" & < "2.3"}
"junit" {>= "2.0" & < "2.1"}
"mtime" {>= "2.0" & < "2.1"}
"fmt" {>= "0.9" & < "0.10"}
"ppxlib" {>= "0.30" & < "0.31"}
"ocaml-compiler-libs" {>= "v0.12" & < "v0.13"}
"cmdliner" {>= "1.2" & < "1.3"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/just-max/less-power.git"