-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbison-grammar-codegen.cabal
63 lines (58 loc) · 1.28 KB
/
bison-grammar-codegen.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
cabal-version: 2.4
name: bison-grammar-codegen
version: 0.0.1
license: MIT
license-file: LICENSE.md
author: Justin Christensen
maintainer: [email protected]
extra-source-files: *.md
common props
ghc-options: -Wall
build-depends: base ^>=4.12.0.0
default-language: Haskell2010
library
import: props
exposed-modules:
Bison.Grammar.Codegen
, Bison.Grammar.Gram
, Bison.Grammar.Lexer
, Bison.Grammar.Parser
, Bison.Grammar.Types
, Bison.Grammar.Utils
hs-source-dirs: src
build-depends:
fast-logger
, mtl
, containers
, megaparsec
, text
, time
executable bison-gen
import: props
main-is: Main.hs
other-modules:
Paths_bison_grammar_codegen
build-depends:
bison-grammar-codegen
, mtl
, optparse-applicative
test-suite tests
import: props
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
build-depends:
hspec ==2.*
, hspec-megaparsec
, megaparsec
, mtl
, transformers
, text
, bison-grammar-codegen
other-modules:
Helper
, Fixtures
, Bison.Grammar.LexerSpec
, Paths_bison_grammar_codegen
build-tool-depends: hspec-discover:hspec-discover == 2.*