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