this repo has no description
1opam-version: "2.0" 2maintainer: "stephen.dolan@cl.cam.ac.uk" 3authors: ["Stephen Dolan"] 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 [ 10 "jbuilder" 11 "build" 12 "--only-packages" 13 name 14 "--no-config" {jbuilder:version >= "1.0+beta18"} 15 "--root" 16 "." 17 "-j" 18 jobs 19 "@install" 20 ] 21 [ 22 "jbuilder" 23 "build" 24 "--only-packages" 25 name 26 "--no-config" {jbuilder:version >= "1.0+beta18"} 27 "--root" 28 "." 29 "-j" 30 jobs 31 "@runtest" 32 ] {with-test} 33] 34depends: [ 35 "ocaml" {>= "4.03"} 36 "jbuilder" {>= "1.0+beta6"} 37 "ocplib-endian" {>= "0.6"} 38 "cmdliner" {>= "1.0.0" & < "1.1.0"} 39 "afl-persistent" {>= "1.1"} 40 "calendar" {with-test & >= "2.00"} 41 "xmldiff" {with-test} 42 "pprint" {with-test & < "20180523"} 43 "fpath" {with-test} 44 "uucp" {with-test} 45 "uunf" {with-test} 46 "uutf" {with-test} 47] 48synopsis: "Write tests, let a fuzzer find failing cases" 49description: """ 50Crowbar is a library for testing code, combining QuickCheck-style 51property-based testing and the magical bug-finding powers of 52[afl-fuzz](http://lcamtuf.coredump.cx/afl/).""" 53url { 54 src: "https://github.com/stedolan/crowbar/archive/v0.1.tar.gz" 55 checksum: [ 56 "sha256=ef9d7ccdc2e0ed453af1a2e182763c7cac725760f9ad7e7ab8af459f98471a2e" 57 "md5=cb7379d5182b56a18aba11aa40ed279a" 58 ] 59}