-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguston.cabal
71 lines (67 loc) · 2.25 KB
/
guston.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
name: guston
version: 0.1.0.0
description: A dialect of Lisp
homepage: https://github.com/maxhallinan/guston#readme
license: MIT
license-file: LICENSE
author: Max Hallinan
maintainer: [email protected]
copyright: Max Hallinan
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
build-depends: base >= 4.7 && < 5
, containers
, directory
, filepath
, haskeline
, megaparsec
, mtl
, parser-combinators
default-language: Haskell2010
ghc-options: -Wall
exposed-modules: Eval
, Parse
, Repl
, Syntax
hs-source-dirs: src
test-suite spec
build-depends: base >= 4.7 && < 5
, guston
, checkers
, containers
, hspec
, hspec-expectations
, HUnit
, mtl
, QuickCheck
default-language: Haskell2010
other-modules: Spec.Eval
, Spec.Parse
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
other-modules: Spec.Parse
test-suite golden
build-depends: base >= 4.7 && < 5
, guston
, bytestring
, filepath
, Glob
, mtl
, tasty
, tasty-golden
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: test
main-is: Golden.hs
type: exitcode-stdio-1.0
executable guston
build-depends: base >= 4.7 && < 5
, guston
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: app
main-is: Main.hs