-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgospel.opam
48 lines (48 loc) · 1.23 KB
/
gospel.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
opam-version: "2.0"
synopsis: "A tool-agnostic formal specification language for OCaml"
description: """\
Gospel is a behavioural specification language for OCaml programs. It provides
developers with a non-invasive and easy-to-use syntax to annotate their module
interfaces with formal contracts that describe type invariants, mutability,
function pre-conditions and post-conditions, effects, exceptions, and much more!"""
maintainer: "Jean-Christophe.Filliatre@lri.fr"
authors: [
"Jean-Christophe Filliâtre"
"Samuel Hym"
"Cláudio Lourenço"
"Nicolas Obsorne"
"Clément Pascutto"
"Mário Pereira"
]
license: "MIT"
homepage: "https://github.com/ocaml-gospel/gospel"
dev-repo: "git://github.com/ocaml-gospel/gospel"
bug-reports: "https://github.com/ocaml-gospel/gospel/issues"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
depends: [
"ocaml" {>= "4.11"}
"ocamlfind"
"dune" {>= "3.0.0"}
"dune-build-info"
"menhir" {>= "20181006"}
"cmdliner" {>= "1.1.0"}
"fmt" {>= "0.8.7"}
"ocaml-compiler-libs" {>= "v0.12.0"}
"ppxlib" {>= "0.26.0"}
"ppx_deriving" {>= "5.2.1"}
"pp_loc" {>= "2.1.0"}
"odoc" {with-test}
]