-
Notifications
You must be signed in to change notification settings - Fork 19
/
logtk.opam
40 lines (39 loc) · 1.11 KB
/
logtk.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Simon Cruanes" "Petar Vukmirovic" "Alexander Bentkamp" "Sophie Tourret" "Visa Nummelin"]
homepage: "https://github.com/sneeuwballen/zipperposition"
version: "2.1"
license: "BSD-2-Clause"
synopsis: "Core types and algorithms for logic"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"base-bytes"
"base-unix"
("zarith" | "num")
"oseq" { >= "0.5" }
"containers" { >= "3.0" & < "4.0" }
"containers-data" { >= "3.0" & < "4.0" }
"mtime" { >= "2.0" & < "3.0"}
"iter" { >= "1.2" }
"menhir" {build}
"dune" { >= "1.11" }
"alcotest" {with-test}
"qcheck-core" {with-test & >= "0.9"}
"qcheck-alcotest" {with-test & >= "0.9"}
"ocaml" {>= "4.08"}
]
depopts: [
"msat"
]
conflicts: [
"msat" { < "0.8.1" }
"msat" { >= "0.10" }
"zarith" { < "1.7" }
]
tags: [ "logic" "unification" "term" ]
bug-reports: "https://github.com/sneeuwballen/zipperposition/issues"
dev-repo: "git+https://github.com/sneeuwballen/zipperposition.git"