this repo has no description
1opam-version: "2.0"
2synopsis: "Core qcheck library"
3maintainer: "simon.cruanes.2007@m4x.org"
4authors: "the qcheck contributors"
5license: "BSD-2-Clause"
6tags: ["test" "property" "quickcheck"]
7homepage: "https://github.com/c-cube/qcheck/"
8doc: "http://c-cube.github.io/qcheck/"
9bug-reports: "https://github.com/c-cube/qcheck/issues"
10depends: [
11 "dune" {>= "2.2"}
12 "base-bytes"
13 "base-unix"
14 "alcotest" {with-test & >= "1.2.0"}
15 "odoc" {with-doc}
16 "ocaml" {>= "4.08.0"}
17]
18conflicts: [
19 "ounit" {< "2.0"}
20]
21build: [
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
24 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "5.0.0"}
25]
26dev-repo: "git+https://github.com/c-cube/qcheck.git"
27url {
28 src: "https://github.com/c-cube/qcheck/archive/v0.19.tar.gz"
29 checksum: [
30 "md5=6913306eb3065da1dee749d67732cb01"
31 "sha512=ab77384e64887c4c88d6e641f433709a83bafc7cd2d05d548fdfee3593beb3bc5c4345db03e324e033ecd4fd2ae600fa92cea3e5753d5e322d13a01ba787eeb6"
32 ]
33}