this repo has no description
1opam-version: "2.0" 2maintainer: "stephen.dolan@cl.cam.ac.uk" 3authors: "stephen.dolan@cl.cam.ac.uk" 4homepage: "https://github.com/stedolan/crowbar" 5bug-reports: "https://github.com/stedolan/crowbar/issues" 6dev-repo: "git+https://github.com/stedolan/crowbar.git" 7license: "MIT" 8build: [ 9 [ "dune" "build" "-p" name "-j" jobs ] 10] 11run-test: [ 12 [ "dune" "build" "-p" name "-j" jobs 13 "@examples/calendar/runtest" 14 "@examples/fpath/runtest" 15 "@examples/map/runtest" 16 "@examples/serializer/runtest" 17 "@examples/uunf/runtest" 18 ] 19] 20depends: [ 21 "dune" {>= "1.1"} 22 "ocaml" {>= "4.08"} 23 "ocplib-endian" {> "0.6"} 24 "cmdliner" {>= "0.9.8" & < "1.1.0"} 25 "afl-persistent" {>= "1.1"} 26 "calendar" {with-test & >= "2.00"} 27 "fpath" {with-test} 28 "uucp" {with-test} 29 "uunf" {with-test} 30 "uutf" {with-test} 31] 32synopsis: "Write tests, let a fuzzer find failing cases" 33description: """ 34Crowbar is a library for testing code, combining QuickCheck-style 35property-based testing and the magical bug-finding powers of 36[afl-fuzz](http://lcamtuf.coredump.cx/afl/). 37""" 38url { 39 src: "https://github.com/stedolan/crowbar/archive/v0.2.tar.gz" 40 checksum: [ 41 "sha256=545e51f833bca15caf19d552faf29f63b6bb441671d6dad8adbdfe0e369e5909" 42 "md5=55e85b9fcc3a777bc7c70ec57b136e7c" 43 ] 44}