File tree Expand file tree Collapse file tree 5 files changed +160
-0
lines changed
ppx_deriving_qcheck/ppx_deriving_qcheck.0.4.1
qcheck-alcotest/qcheck-alcotest.0.21.2
qcheck-core/qcheck-core.0.21.2
qcheck-ounit/qcheck-ounit.0.21.2 Expand file tree Collapse file tree 5 files changed +160
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "PPX Deriver for QCheck"
3+ 4+ authors: "the qcheck contributors"
5+ license: "BSD-2-Clause"
6+ homepage: "https://github.com/c-cube/qcheck/"
7+ bug-reports: "https://github.com/c-cube/qcheck/-/issues"
8+ depends: [
9+ "dune" {>= "2.8.0"}
10+ "ocaml" {>= "4.08.0"}
11+ "qcheck-core" {>= "0.19"}
12+ "ppxlib" {>= "0.22.0"}
13+ "ppx_deriving" {>= "5.2.1"}
14+ "odoc" {with-doc}
15+ "alcotest" {with-test & >= "1.4.0"}
16+ "qcheck-alcotest" {with-test & >= "0.17"}
17+ ]
18+ build: [
19+ ["dune" "build" "-p" name "-j" jobs]
20+ ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
21+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
22+ ]
23+ dev-repo: "git+https://github.com/vch9/ppx_deriving_qcheck.git"
24+ url {
25+ src: "https://github.com/c-cube/qcheck/archive/v0.21.2.tar.gz"
26+ checksum: [
27+ "md5=b8e3728fc1b534ee01e3c2b7e2b30bb3"
28+ "sha512=67ff77a66ccf046dfede9123a322002f232a0a65b8ce1890795a4a4ba247bc5413f988e7cfd53412418036c2b907e4cbcd7dcd39d7f1fd2481aee60107b075cc"
29+ ]
30+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Alcotest backend for qcheck"
3+ 4+ authors: "the qcheck contributors"
5+ license: "BSD-2-Clause"
6+ tags: ["test" "quickcheck" "qcheck" "alcotest"]
7+ homepage: "https://github.com/c-cube/qcheck/"
8+ doc: "http://c-cube.github.io/qcheck/"
9+ bug-reports: "https://github.com/c-cube/qcheck/issues"
10+ depends: [
11+ "dune" {>= "2.8.0"}
12+ "base-bytes"
13+ "base-unix"
14+ "qcheck-core" {= version}
15+ "alcotest" {>= "0.8.1"}
16+ "odoc" {with-doc}
17+ "ocaml" {>= "4.08.0"}
18+ ]
19+ build: [
20+ ["dune" "build" "-p" name "-j" jobs]
21+ ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
22+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
23+ ]
24+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
25+ url {
26+ src: "https://github.com/c-cube/qcheck/archive/v0.21.2.tar.gz"
27+ checksum: [
28+ "md5=b8e3728fc1b534ee01e3c2b7e2b30bb3"
29+ "sha512=67ff77a66ccf046dfede9123a322002f232a0a65b8ce1890795a4a4ba247bc5413f988e7cfd53412418036c2b907e4cbcd7dcd39d7f1fd2481aee60107b075cc"
30+ ]
31+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Core qcheck library"
3+ 4+ authors: "the qcheck contributors"
5+ license: "BSD-2-Clause"
6+ tags: ["test" "property" "quickcheck"]
7+ homepage: "https://github.com/c-cube/qcheck/"
8+ doc: "http://c-cube.github.io/qcheck/"
9+ bug-reports: "https://github.com/c-cube/qcheck/issues"
10+ depends: [
11+ "dune" {>= "2.8.0"}
12+ "base-bytes"
13+ "base-unix"
14+ "alcotest" {with-test}
15+ "odoc" {with-doc}
16+ "ocaml" {>= "4.08.0"}
17+ ]
18+ conflicts: [
19+ "ounit" {< "2.0"}
20+ ]
21+ build: [
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}
25+ ]
26+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
27+ url {
28+ src: "https://github.com/c-cube/qcheck/archive/v0.21.2.tar.gz"
29+ checksum: [
30+ "md5=b8e3728fc1b534ee01e3c2b7e2b30bb3"
31+ "sha512=67ff77a66ccf046dfede9123a322002f232a0a65b8ce1890795a4a4ba247bc5413f988e7cfd53412418036c2b907e4cbcd7dcd39d7f1fd2481aee60107b075cc"
32+ ]
33+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "OUnit backend for qcheck"
3+ 4+ authors: "the qcheck contributors"
5+ license: "BSD-2-Clause"
6+ tags: ["qcheck" "quickcheck" "ounit"]
7+ homepage: "https://github.com/c-cube/qcheck/"
8+ doc: "http://c-cube.github.io/qcheck/"
9+ bug-reports: "https://github.com/c-cube/qcheck/issues"
10+ depends: [
11+ "dune" {>= "2.8.0"}
12+ "base-bytes"
13+ "base-unix"
14+ "qcheck-core" {= version}
15+ "ounit2"
16+ "odoc" {with-doc}
17+ "ocaml" {>= "4.08.0"}
18+ ]
19+ build: [
20+ ["dune" "build" "-p" name "-j" jobs]
21+ ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
22+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
23+ ]
24+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
25+ url {
26+ src: "https://github.com/c-cube/qcheck/archive/v0.21.2.tar.gz"
27+ checksum: [
28+ "md5=b8e3728fc1b534ee01e3c2b7e2b30bb3"
29+ "sha512=67ff77a66ccf046dfede9123a322002f232a0a65b8ce1890795a4a4ba247bc5413f988e7cfd53412418036c2b907e4cbcd7dcd39d7f1fd2481aee60107b075cc"
30+ ]
31+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Compatibility package for qcheck"
3+ 4+ authors: "the qcheck contributors"
5+ license: "BSD-2-Clause"
6+ tags: ["test" "property" "quickcheck"]
7+ homepage: "https://github.com/c-cube/qcheck/"
8+ doc: "http://c-cube.github.io/qcheck/"
9+ bug-reports: "https://github.com/c-cube/qcheck/issues"
10+ depends: [
11+ "dune" {>= "2.8.0"}
12+ "base-bytes"
13+ "base-unix"
14+ "qcheck-core" {= version}
15+ "qcheck-ounit" {= version}
16+ "alcotest" {with-test}
17+ "odoc" {with-doc}
18+ "ocaml" {>= "4.08.0"}
19+ ]
20+ conflicts: [
21+ "ounit" {< "2.0"}
22+ ]
23+ build: [
24+ ["dune" "build" "-p" name "-j" jobs]
25+ ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
26+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
27+ ]
28+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
29+ url {
30+ src: "https://github.com/c-cube/qcheck/archive/v0.21.2.tar.gz"
31+ checksum: [
32+ "md5=b8e3728fc1b534ee01e3c2b7e2b30bb3"
33+ "sha512=67ff77a66ccf046dfede9123a322002f232a0a65b8ce1890795a4a4ba247bc5413f988e7cfd53412418036c2b907e4cbcd7dcd39d7f1fd2481aee60107b075cc"
34+ ]
35+ }
You can’t perform that action at this time.
0 commit comments