this repo has no description
1opam-version: "2.0"
2synopsis: "Write tests, let a fuzzer find failing cases"
3description: """
4Crowbar is a library for testing code, combining QuickCheck-style
5property-based testing and the magical bug-finding powers of
6[afl-fuzz](http://lcamtuf.coredump.cx/afl/).
7"""
8maintainer: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"]
9authors: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"]
10license: "MIT"
11homepage: "https://github.com/stedolan/crowbar"
12bug-reports: "https://github.com/stedolan/crowbar/issues"
13depends: [
14 "dune" {>= "2.9"}
15 "ocaml" {>= "4.08"}
16 "ocplib-endian" {>= "0.6"}
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]
27build: [
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]
43dev-repo: "git+https://github.com/stedolan/crowbar.git"
44url {
45 src: "https://github.com/stedolan/crowbar/archive/v0.2.1.tar.gz"
46 checksum: [
47 "sha256=4d73e558bf230ed88b7fadc79ac9ece63ffe7a0fbda542755743dc311d21bc24"
48 "md5=c79be303acd3ba5f8a7477c533133d2b"
49 ]
50}