-
Notifications
You must be signed in to change notification settings - Fork 19
/
coq-concert.opam
45 lines (42 loc) · 1.43 KB
/
coq-concert.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
opam-version: "2.0"
name: "coq-concert"
version: "dev"
synopsis: "A framework for smart contract verification in Coq"
description: """
A framework for smart contract verification in Coq
"""
maintainer: "Danil Annenkov <[email protected]>"
authors: "The COBRA team"
license: "MIT"
homepage: "https://github.com/AU-COBRA/ConCert"
dev-repo: "git+https://github.com/AU-COBRA/ConCert.git"
bug-reports: "https://github.com/AU-COBRA/ConCert/issues"
doc: "https://au-cobra.github.io/ConCert/toc.html"
depends: [
"coq" {>= "8.17" & < "8.19~"}
"coq-bignums" {>= "8"}
"coq-quickchick" {>= "2.0.4"}
"coq-metacoq-utils" {>= "1.2" & < "1.3~"}
"coq-metacoq-common" {>= "1.2" & < "1.3~"}
"coq-metacoq-template" {>= "1.2" & < "1.3~"}
"coq-metacoq-template-pcuic" {>= "1.2" & < "1.3~"}
"coq-metacoq-pcuic" {>= "1.2" & < "1.3~"}
"coq-metacoq-safechecker" {>= "1.2" & < "1.3~"}
"coq-metacoq-erasure" {>= "1.2" & < "1.3~"}
"coq-rust-extraction" {= "dev"}
"coq-elm-extraction" {= "dev"}
"coq-stdpp" {= "1.9.0"}
]
pin-depends: [
["coq-rust-extraction.dev" "git+https://github.com/AU-COBRA/coq-rust-extraction.git#0053733e56008c917bf43d12e8bf0616d3b9a856"]
["coq-elm-extraction.dev" "git+https://github.com/AU-COBRA/coq-elm-extraction.git#903320120e3f36d7857161e5680fabeb6e743c6b"]
]
build: [
[make]
[make "examples"] {with-test}
[make "html"] {with-doc}
]
install: [
[make "install"]
[make "-C" "examples" "install"] {with-test}
]