-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRaven.opam
44 lines (44 loc) · 1.34 KB
/
Raven.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Intermediate verification language and deductive verifier for concurrent programs"
description:
"Raven is an intermediate verification language and SMT-based deductive verifier based on concurrent separation logic. It is intended as an intermediate layer for building program verification tools that target concurrent programs. Raven can also be used as a standalone educational tool."
maintainer: ["Ekanshdeep Gupta" "Nisarg Patel" "Thomas Wies"]
authors: ["Ekanshdeep Gupta" "Nisarg Patel" "Thomas Wies"]
license: "MIT"
homepage: "https://github.com/nyu-acsys/raven"
bug-reports: "https://github.com/nyu-acsys/raven/issues"
depends: [
"ocaml" {>= "4.12.0"}
"dune" {>= "3.12" & >= "3.12"}
"z3" {>= "4.13.0"}
"ocamlformat" {>= "0.26.2"}
"base" {>= "0.14"}
"stdio" {>= "0.14"}
"logs" {>= "0.7.0"}
"fmt" {>= "0.9.0"}
"cmdliner" {>= "1.2.0"}
"ppx_custom_printf" {>= "0.14.1"}
"ppx_compare" {>= "0.14.0"}
"ppx_hash" {>= "0.14.0"}
"ppx_sexp_conv" {>= "0.14.3"}
"ppx_let" {>= "0.16.0"}
"ppx_blob" {>= "0.7.2"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/nyu-acsys/raven.git"