-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrows.cabal
82 lines (79 loc) · 2.56 KB
/
rows.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
74
75
76
77
78
79
80
81
82
cabal-version: 2.4
-- Initial package description 'rows.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: rows
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Isaac Elliott
maintainer: isaace71295@gmail.com
-- copyright:
category: Language
extra-source-files: CHANGELOG.md
library
exposed-modules: Bound.Scope.Utils
, Data.List.Utils
, Desugar
, Desugar.Sections
, Eval
, Evidence
, Tm
, Ty
, Kind
, Meta
, Inference.Evidence
, Inference.Kind
, Inference.Kind.Error
, Inference.State
, Inference.Type
, Inference.Type.Row
, Inference.Type.Error
, Inference.Type.Monad
, Label
, Optimisation
, Parser
, Syntax
build-depends: base <5
, bound
, concurrent-supply
, containers
, deriving-compat
, equivalence
, lens
, megaparsec
, mtl
, plated1
, text
, transformers
hs-source-dirs: src
ghc-options: -Wall -Werror
default-language: Haskell2010
test-suite rows-tests
type: exitcode-stdio-1.0
other-modules: Test.Desugar
, Test.Kinds
, Test.Optimise
, Test.Parse
, Test.ParseTypes
, Test.Types
hs-source-dirs: test
build-depends: base <5
, bound
, concurrent-supply
, equivalence
, rows
, hedgehog
, hspec
, hw-hspec-hedgehog
, lens
, megaparsec
, mtl
, plated1
, text
, transformers
main-is: Main.hs
ghc-options: -Wall -Werror
default-language: Haskell2010