-
Notifications
You must be signed in to change notification settings - Fork 7
/
dune-project
106 lines (96 loc) · 1.83 KB
/
dune-project
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
(lang dune 3.10)
(using menhir 2.1)
(using mdx 0.2)
(name smtml)
(generate_opam_files true)
(source
(github formalsec/smtml))
(authors
"João Pereira <joaomhmpereira@tecnico.ulisboa.pt>"
"Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>"
"Hichem Rami Ait El Hara <hra@ocamlpro.com>"
"Léo Andrès <contact@ndrs.fr>"
"Arthur Carcano <arthur.carcano@ocamlpro.com>"
"Pierre Chambart <pierre.chambart@ocamlpro.com>"
"José Fragoso Santos <jose.fragoso@tecnico.ulisboa.pt>")
(maintainers "Filipe Marques <filipe.s.marques@tecnico.ulisboa.pt>")
(documentation "https://formalsec.github.io/smtml/smtml/index.html")
(license "MIT")
(package
(name smtml)
(synopsis "A Front-end library for SMT solvers in OCaml")
(description "A Multi Back-end Front-end for SMT Solvers in OCaml.")
; Optional solver dependencies
; Change here sould be mirrored in "conflicts"
(depopts
alt-ergo-lib
bitwuzla-cxx
colibri2
cvc5
z3)
(conflicts
(bitwuzla-cxx
(< "0.6.0"))
(z3
(or
(< "4.12.2")
(>= "4.14"))))
(depends
(cmdliner
(>= "1.2.0"))
dune
(dolmen
(= "0.10"))
(dolmen_type
(= "0.10"))
(dolmen_model
(= "0.10"))
(fmt
(>= "0.8.7"))
(hc
(>= "0.3"))
(menhir
(and
:build
(>= "20220210")))
(ocaml
(>= "4.14.0"))
ocaml_intrinsics
(patricia-tree
(>= "0.10.0"))
(prelude
(>= "0.3"))
rusage
(yojson
(>= "1.6.0"))
(zarith
(>= "1.5"))
;; Doc dependencies
(odoc
:with-doc)
(sherlodoc
:with-doc)
;; Test dependencies
(bisect_ppx
(and
:with-test
(>= "2.5.0")))
;; Dev dependencies
(benchpress
(and
:with-dev-setup
(= "dev")))
(cohttp
:with-dev-setup)
(cohttp-lwt-unix
:with-dev-setup)
(core_unix
:with-dev-setup)
(lwt
:with-dev-setup)
(mdx
:with-test)
(owl
:with-dev-setup)
(tls-lwt
:with-dev-setup)))