this repo has no description
1opam-version: "2.0"
2synopsis: "Runtime support library for Ortac/QCheck-STM-generated code"
3description: """
4The ortac-runtime-qcheck-stm library provides support for the code
5generated by the Ortac/QCheck-STM plugin (provided by the
6ortac-qcheck-stm package).
7
8Ortac (OCaml Runtime Assertion Checking) is a tool to turn
9executable Gospel specifications into code to test they hold.
10"""
11maintainer: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
12authors: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
13license: "MIT"
14homepage: "https://github.com/ocaml-gospel/ortac"
15bug-reports: "https://github.com/ocaml-gospel/ortac/issues"
16depends: [
17 "dune" {>= "3.8"}
18 "ocaml" {>= "4.12.0"}
19 "qcheck-stm"
20 "ortac-runtime" {= version}
21 "odoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "--promote-install-files=false"
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37 ["dune" "install" "-p" name "--create-install-files" name]
38]
39dev-repo: "git+https://github.com/ocaml-gospel/ortac.git"
40url {
41 src: "https://github.com/ocaml-gospel/ortac/archive/refs/tags/0.2.0.tar.gz"
42 checksum: [
43 "md5=15d9aa0fb63a79a5444b35970910c5c4"
44 "sha512=3a9162a91c4556553d3105de446e59247360ca2f0bd984124fac330854410d336aed7af252ae73ab7148f8b8f389601cc46e5b783e3bba9a7390df9009e5e10a"
45 ]
46}