-
Notifications
You must be signed in to change notification settings - Fork 2
/
mltt.cabal
72 lines (61 loc) · 2.66 KB
/
mltt.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: mltt
author: Sebastian Conybeare
version: 0.0.1
build-type: Simple
cabal-version: >= 1.10
category: Utility
copyright: 2016 Sebastian Conybeare <[email protected]>
extra-source-files: README.md
maintainer: [email protected]
-- FIXME: add license file etc.
synopsis: An implementation of Martin-Löf Type Theory in Haskell.
description: An implementation of Martin-Löf Type Theory in Haskell.
library
build-depends: base == 4.*
-- Data types
, containers == 0.5.*
, unordered-containers == 0.2.*
-- Strings
, text == 1.2.*
-- Monad transformers
, mtl == 2.2.*
, transformers == 0.4.*
-- Lens
, lens == 4.13.*
-- Pipes
, pipes == 4.1.*
-- Parsing
, trifecta == 1.5.*
, parsers == 0.12.*
-- Exceptions
, exceptions == 0.8.*
-- Miscellaneous
, haskeline == 0.7.*
, ansi-wl-pprint == 0.6.*
, data-fix == 0.0.*
, here == 1.2.*
, hashable == 1.2.*
default-language: Haskell2010
exposed-modules: MLTT
MLTT.Types
MLTT.Types.Expr
MLTT.Types.Variable
MLTT.Types.Exceptions
MLTT.Infer
MLTT.Parser
ghc-options: -Wall
-threaded
-fno-warn-type-defaults
-fno-warn-unused-imports
-fno-warn-unused-do-bind
ghc-prof-options: -auto-all -prof
hs-source-dirs: library
default-extensions: OverloadedStrings
executable mltt
build-depends: base == 4.*
, mltt
default-language: Haskell2010
ghc-options: -threaded
ghc-prof-options: -auto-all -prof
hs-source-dirs: executable
main-is: Main.hs