this repo has no description

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

Package crowbar v0.2.1

Kate 79b79269 b84fdd30

Changed files
+47
packages
crowbar
crowbar.0.2.1
+47
packages/crowbar/crowbar.0.2.1/opam
···
+
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"}
+
"ocplib-endian"
+
"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"
+
url {
+
src: "https://github.com/stedolan/crowbar/archive/v0.2.1.tar.gz"
+
checksum: "md5=c79be303acd3ba5f8a7477c533133d2b"
+
}