-
Notifications
You must be signed in to change notification settings - Fork 89
/
pi-forall.cabal
73 lines (66 loc) · 1.76 KB
/
pi-forall.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
73
cabal-Version: 2.2
name: pi-forall
version: 0.2
license: MIT
license-file: LICENSE
copyright: (c) 2013-2023 University of Pennsylvania
description: An implementation of a simple dependently typed language for OPLSS 2022
author: Stephanie Weirich <[email protected]>, based on code by Trellys Team <trellys@...>
maintainer: Stephanie Weirich <[email protected]>
build-type: Simple
tested-with: GHC == 8.10.7
category: Compilers/Interpreters
homepage: https://github.com/sweirich/pi-forall
synopsis: Demo implementation of typechecker for dependently-typed language
source-repository head
type: git
location: https://github.com/sweirich/pi-forall
common shared-properties
default-language:
GHC2021
ghc-options:
-Wall -fno-warn-unused-matches -fno-warn-orphans -fno-warn-unused-top-binds -fno-warn-unused-imports -fno-warn-name-shadowing -Wno-unrecognised-pragmas
default-extensions:
DefaultSignatures
DeriveAnyClass
DerivingStrategies
build-depends:
base >= 4 && < 5,
parsec >= 3.1.8 && < 3.2,
mtl >= 2.2.1,
pretty >= 1.0.1.0,
unbound-generics >= 0.4.3,
transformers,
array >= 0.3.0.2 && < 0.6,
containers,
directory,
filepath,
HUnit,
QuickCheck
if !impl(ghc >= 8.0)
build-depends: semigroups
library
import: shared-properties
hs-source-dirs: src
exposed-modules:
Environment
Equal
LayoutToken
Modules
Parser
PrettyPrint
Syntax
TypeCheck
Arbitrary
executable pi-forall
import: shared-properties
build-depends: pi-forall
hs-source-dirs: app
main-is: Main.hs
test-suite test-pi-forall
import: shared-properties
build-depends: pi-forall
, QuickCheck >= 2.13.2
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs