this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/base_quickcheck" 5bug-reports: "https://github.com/janestreet/base_quickcheck/issues" 6dev-repo: "git+https://github.com/janestreet/base_quickcheck.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base_quickcheck/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.04.2"} 14 "base" {>= "v0.13" & < "v0.14"} 15 "ppx_base" {>= "v0.13" & < "v0.14"} 16 "ppx_fields_conv" {>= "v0.13" & < "v0.14"} 17 "ppx_let" {>= "v0.13" & < "v0.14"} 18 "ppx_sexp_message" {>= "v0.13" & < "v0.14"} 19 "splittable_random" {>= "v0.13" & < "v0.14"} 20 "dune" {>= "1.5.1"} 21 "ppxlib" {>= "0.9.0" & < "0.36.0"} 22] 23synopsis: "Randomized testing framework, designed for compatibility with Base" 24description: " 25Base_quickcheck provides randomized testing in the style of Haskell's Quickcheck library, 26with support for built-in types as well as types provided by Base. 27" 28url { 29 src: 30 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/base_quickcheck-v0.13.0.tar.gz" 31 checksum: [ 32 "sha256=28740902ba041578e9277e52e4eea3116c9f92a06476f2c31920efc4cd2799e5" 33 "md5=798f626f9c8836591e7b3926714ad19e" 34 ] 35}