-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune-project
43 lines (39 loc) · 1.25 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
(lang dune 3.16)
(name catt)
(generate_opam_files true)
(source (github thibautbenjamin/catt))
(authors "Thibaut Benjamin <[email protected]>"
"Chiara Sarti <[email protected]>")
(maintainers "Thibaut Benjamin <[email protected]>"
"Chiara Sarti <[email protected]>")
(license MIT)
(using menhir 2.0)
(cram enable)
(using coq 0.9)
(package
(name catt)
(synopsis "An infinity-categorical coherence typechecker")
(description "An infinity-categorical coherence typechecker")
(depends
(ocaml (and (>= 4.14) (< 5.0)))
(dune (>= 3.10))
(menhir (>= 20240715))
(base (>= 0.17.0)))
(tags
(higher-categories dependent-type-theory)))
(package
(name coq-catt-plugin)
(synopsis "A Coq plugin for the catt proof-assistant")
(description "A Coq plugin to interpret terms built in the catt proof assistant as functions computing on higher dimensional identity types")
(depends
catt
(coq (>= 8.20)))
(tags
(higher-categories dependent-type-theory)))
(package
(name catt-web)
(synopsis "Browser embedded version of the catt theorem prover")
(description "Browser embedded version of the catt theorem prover")
(allow_empty)
(tags
(higher-categories dependent-type-theory)))