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.3.0.tar.gz" 42 checksum: [ 43 "md5=26fe3888ccf1112c5961f50bbea8f427" 44 "sha512=27c75ad4a614c5e800d85714ef2e074dec9625ca78848dbc06823ad4a6d3e527d78600801bc94162bf24291c35eaa70ee83898e981ef2e5bbc703df249ffe077" 45 ] 46}