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. 6 7Ortac (OCaml Runtime Assertion Checking) is a tool to turn 8executable Gospel specifications into code to test they hold.""" 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 "ocaml" {>= "4.12.0"} 21 "dune" {>= "3.8"} 22 "fmt" {>= "0.8.7"} 23 "zarith" 24 "monolith" {with-test} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "--promote-install-files=false" 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40 ["dune" "install" "-p" name "--create-install-files" name] 41] 42dev-repo: "git+https://github.com/ocaml-gospel/ortac.git" 43url { 44 src: "https://github.com/ocaml-gospel/ortac/archive/refs/tags/0.1.0.tar.gz" 45 checksum: [ 46 "md5=665760e43919a9da2b33bb896033b011" 47 "sha512=f1f45cd3534ca040eb7e0f0f86c6c905a972d5ff7918946f1a8f04fa7c9947def46b3ede68fa0c2297706832a807389c2964f9bfd8d40bcd06acdf5e3004d57f" 48 ] 49}