-
Notifications
You must be signed in to change notification settings - Fork 0
/
dzang.cabal
86 lines (81 loc) · 2.58 KB
/
dzang.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
83
84
85
86
cabal-version: 2.2
-- Initial package description 'dzang.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: dzang
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Norbert Dzikowski
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
common shared
default-language: Haskell2010
build-depends: base >=4.14.0.0
ghc-options:
-Wall
library
import: shared
hs-source-dirs: src
exposed-modules: Dzang
, Dzang.Language
, Dzang.AST
, Dzang.Interpreter.Interpreter
, Dzang.Interpreter.Error
, Dzang.Typing.TypeChecker
, Dzang.Typing.Types
, Dzang.Typing.Inferer
, Dzang.Typing.Solver
, Dzang.Typing.Error
build-depends: text
, transformers
, mtl
, dzarser
, containers
, recursion-schemes
, data-fix
, deriving-compat
executable dzang-exe
import: shared
main-is: Main.hs
-- other-modules:
-- other-extensions:
ghc-options:
-threaded
build-depends: dzang
, text == 1.2.4.1
, dzarser
, optparse-applicative
hs-source-dirs: app
test-suite dzang-test
import: shared
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
-fno-warn-type-defaults
other-modules: Dzang.Test.ParserSpec
, Dzang.Test.DzangSpec
, Dzang.Test.InterpreterSpec
, Dzang.Test.InfererSpec
, Dzang.Test.SolverSpec
, Dzang.Test.TypeCheckerSpec
, Dzang.Test.Interpreter
build-depends: hspec
, hspec-expectations
, hspec-expectations-pretty-diff
, dzang
, dzarser
, template-haskell
, random >= 1.2.0
, text
, time
, mtl
build-tool-depends: hspec-discover:hspec-discover == 2.*