-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfree-interpreter.cabal
42 lines (39 loc) · 1.1 KB
/
free-interpreter.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
name: free-interpreter
version: 0.2.0.1
license: GPL-3
license-file: LICENSE
author: Allele Dev
maintainer: [email protected]
copyright: Allele Dev 2016
build-type: Simple
cabal-version: >=1.20
library
build-depends:
base
, free
exposed-modules:
Control.Teletype
default-language: Haskell2010
ghc-options: -Wall -fno-warn-type-defaults
hs-source-dirs: src
test-suite properties
type: exitcode-stdio-1.0
main-is: properties.hs
build-depends:
base
, free-interpreter
, QuickCheck
default-language: Haskell2010
ghc-options: -Wall -fno-warn-type-defaults
hs-source-dirs: tests
benchmark core
type: exitcode-stdio-1.0
main-is: simple.hs
build-depends:
base
, free-interpreter
, free
, criterion
default-language: Haskell2010
ghc-options: -Wall -O2 -fno-warn-type-defaults
hs-source-dirs: benchmarks