-
Notifications
You must be signed in to change notification settings - Fork 76
/
cubicaltt.cabal
56 lines (54 loc) · 1.5 KB
/
cubicaltt.cabal
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
-- Initial cubicaltt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cubicaltt
version: 1.0
synopsis: Experimental implementation of a cubical type theory
description: Experimental implementation of a cubical type theory in
which the user can directly manipulate n-dimensional cubes.
license: MIT
license-file: LICENSE
author: Cyril Cohen, Thierry Coquand, Simon Huber, Anders Mörtberg
maintainer:
-- copyright:
category: Language
build-type: Custom
extra-source-files: Makefile, README.md, Exp.cf, examples/*.ctt, cubicaltt.el
cabal-version: >=1.10
executable cubical
main-is: Main.hs
other-modules:
Connections,
CTT,
Eval,
Resolver,
TypeChecker,
Exp.Abs,
Exp.ErrM,
Exp.Layout,
Exp.Lex,
Exp.Par,
Exp.Print,
Exp.Skel
other-extensions:
TypeSynonymInstances,
FlexibleInstances,
GeneralizedNewtypeDeriving,
TupleSections,
CPP,
MagicHash
build-depends:
base >=4.6 && <5,
containers >=0.5 && <0.7,
pretty >=1.1 && <1.2,
QuickCheck >=2.6 && <2.15,
mtl >=2.2 && <2.3,
time >=1.4 && <1.13,
directory >=1.2 && <1.4,
filepath >=1.4 && <1.5,
haskeline >=0.7 && <0.9,
array >=0.4 && <0.6,
-- Build tool
BNFC >=2.8.1 && <3.0
-- hs-source-dirs:
build-tools: alex, happy, bnfc
default-language: Haskell2010