-
Notifications
You must be signed in to change notification settings - Fork 10
/
bun.opam
36 lines (36 loc) · 891 Bytes
/
bun.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
opam-version: "2.0"
synopsis: "Simple management of afl-fuzz processes"
maintainer: ["Ben Andrew <[email protected]>" "Tim McGilchrist <[email protected]>"]
authors: [
"Mindy Preston"
"Thomas Leonard"
]
license: "MIT"
homepage: "https://github.com/ocurrent/bun"
bug-reports: "https://github.com/ocurrent/bun/issues"
depends: [
"ocaml" {>= "4.05"}
"dune" {>= "2.0"}
"bos" {>= "0.2.0"}
"cmdliner" {>= "1.1.0"}
"fpath"
"rresult" {>= "0.3.0"}
"astring"
"crowbar" {with-test}
"afl" {= "2.52b"}
"logs"
"fmt" {>= "0.8.7"}
"lwt"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
conflicts: [
"base-domains"
]
dev-repo: "git+https://github.com/ocurrent/bun.git"
description: """
A wrapper for OCaml processes using afl-fuzz, intended for easy use in CI environments.
See the README.md for more information.
"""