-
Notifications
You must be signed in to change notification settings - Fork 0
/
pl.cabal
50 lines (47 loc) · 1.69 KB
/
pl.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
-- Initial pl.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: pl
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
-- license-file:
author: Dan Rosen
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.20
library
exposed-modules: Data.Result,
Language.PL.DeBruijnIndex,
Language.PL.Interpreter,
Language.PL.Name,
Language.PL.PrettyPrint,
Language.PL.Term,
Language.PL.Type
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8,
hashable >=1.2 && <1.3,
pretty >=1.1 && <1.2,
text >=1.2 && <1.3,
unordered-containers >=0.2 && <0.3,
vector >=0.10 && <0.11
hs-source-dirs: src/main
default-language: Haskell2010
Test-Suite test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: pl,
base >=4.7 && <4.8,
Cabal >=1.20 && <1.21,
QuickCheck >=2.7 && <2.8,
quickcheck-instances >=0.3 && <0.4,
test-framework >=0.8 && <0.9,
test-framework-quickcheck2 >=0.3 && <0.4,
text >=1.2 && <1.3,
unordered-containers >=0.2 && <0.3
hs-source-dirs: src/test
default-language: Haskell2010