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: "Write tests, let a fuzzer find failing cases"
description: """
Crowbar is a library for testing code, combining QuickCheck-style
property-based testing and the magical bug-finding powers of
[afl-fuzz](http://lcamtuf.coredump.cx/afl/).
"""
maintainer: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"]
authors: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"]
license: "MIT"
homepage: "https://github.com/stedolan/crowbar"
bug-reports: "https://github.com/stedolan/crowbar/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.08"}
"cmdliner" {>= "1.1.0"}
"afl-persistent" {>= "1.1"}
"calendar" {>= "2.00" & with-test}
"fpath" {with-test}
"pprint" {with-test}
"uucp" {with-test}
"uunf" {with-test}
"uutf" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/stedolan/crowbar.git"
|