-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboring-packrat.cabal
53 lines (47 loc) · 1.49 KB
/
boring-packrat.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
cabal-version: 3.0
-- Initial package description 'email-peg.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: boring-packrat
version: 0.0.0.1
-- synopsis:
-- description:
-- bug-reports:
author: jeovazero
maintainer: contato@jeova.ninja
-- copyright:
-- category:
build-type: Simple
common deps
build-depends: base,
bytestring,
utf8-string,
word8,
ghc-options: -Wall
default-language: Haskell2010
executable toy
import: deps
build-depends: boring-packrat,
pretty-simple
main-is: Main.hs
hs-source-dirs: toy-lang
library
import: deps
hs-source-dirs: lib
exposed-modules: BoringPackrat,
BoringPackrat.Email,
BoringPackrat.Terminals,
BoringPackrat.Bits,
BoringPackrat.Chars,
BoringPackrat.PrettyPrint,
build-depends: containers,
vector
test-suite spec
import: deps
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
build-tool-depends: hspec-discover:hspec-discover == 2.*
build-depends: boring-packrat,
hspec
other-modules: EmailSpec