-
Notifications
You must be signed in to change notification settings - Fork 0
/
hcalc.cabal
87 lines (84 loc) · 3.11 KB
/
hcalc.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
87
name: hcalc
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/EarthCitizen/hcalc
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: [email protected]
copyright: 2018 Author name here
category: Web
build-type: Simple
cabal-version: >=2.0
extra-source-files: README.md
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -fwarn-unused-imports
default-extensions: GeneralizedNewtypeDeriving
, FlexibleContexts
, StandaloneDeriving
, OverloadedStrings
exposed-modules: Alias
, AST
, Error
, Eval
, FnPredef
, FnStore
, Parse
, Runtime
, Session
, Validate
build-depends: base >= 4.7 && < 5
, mtl == 2.2.2
, megaparsec == 6.4.1
, text == 1.2.3.0
, parser-combinators == 0.4.0
, haskeline == 0.7.4.2
, transformers == 0.5.5.0
, Shellac == 0.9.9
, extra == 1.6.13
, containers == 0.5.10.2
, decimal-arithmetic == 0.5.0.0
executable hcalc
hs-source-dirs: exec
main-is: Main.hs
default-language: Haskell2010
ghc-options: -O2 -fwarn-unused-imports
default-extensions: GeneralizedNewtypeDeriving
, FlexibleContexts
, StandaloneDeriving
, OverloadedStrings
build-depends: base >= 4.7 && < 5
, hcalc
test-suite hcalc-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TestMain.hs
default-language: Haskell2010
ghc-options: -O2 -rtsopts -with-rtsopts=-N
default-extensions: GeneralizedNewtypeDeriving
, FlexibleContexts
, OverloadedStrings
other-modules: Test.Util.GenEval
, Test.Util.GenParse
, Test.Util.Data
, TestEval
, TestParse
, TestValidate
build-depends: base
, containers
, extra
, hedgehog == 0.6
, ieee754 == 0.8.0
, mtl
, monadlist == 0.0.2
, transformers
, scientific == 0.3.6.2
, tasty == 1.0.1.1
, tasty-hedgehog == 0.2.0.0
, tasty-discover == 4.2.0
, tasty-hunit == 0.10.0.1
, HUnit == 1.6.0.0
, hcalc