-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansi-parser.cabal
39 lines (36 loc) · 1.19 KB
/
ansi-parser.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
-- Initial ansi-parser.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ansi-parser
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: pscollins
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: AnsiParser.Types, AnsiParser.Classes, AnsiParser.Parser, AnsiParser.FrontEnd.Parse, AnsiParser.FrontEnd.Lex
-- other-modules:
other-extensions: FlexibleInstances, OverloadedStrings, FlexibleContexts
build-depends: base >=4.8 && <4.9
, bytestring >=0.10 && <0.11
, array
, containers
hs-source-dirs: src
build-tools: alex, happy
default-language: Haskell2010
ghc-options: -Wall
test-suite frontend
type: exitcode-stdio-1.0
hs-source-dirs: test
build-depends: base
, ansi-parser
, hspec
main-is: TestFrontEnd.hs
default-language: Haskell2010
ghc-options: -Wall