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: ["Nicolas Osborne <nicolas.osborne@tarides.com>"]
10authors: [
11 "Clément Pascutto <clement@pascutto.fr>"
12 "Nicolas Osborne <nicolas.osborne@tarides.com>"
13 "Samuel Hym <samuel@tarides.com>"
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 & >= "20201026"}
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.3.0.tar.gz"
46 checksum: [
47 "md5=26fe3888ccf1112c5961f50bbea8f427"
48 "sha512=27c75ad4a614c5e800d85714ef2e074dec9625ca78848dbc06823ad4a6d3e527d78600801bc94162bf24291c35eaa70ee83898e981ef2e5bbc703df249ffe077"
49 ]
50}