this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #20844 from stedolan/crowbar-v0.2.1

Package crowbar v0.2.1

authored by

Kate and committed by
GitHub
79b79269 b84fdd30

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