-
Notifications
You must be signed in to change notification settings - Fork 0
/
report-parser.cabal
35 lines (32 loc) · 1.11 KB
/
report-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
name: report-parser
version: 0.1.0.1
synopsis: Parser combinator library for parsing log files and text reports.
homepage:
category: Testing
author: Gleb Gagarin
license: BSD3
license-file: LICENSE
cabal-version: >= 1.10
build-type: Simple
library
exposed-modules: Text.Parsing.Report
other-modules: Text.Parsing.Report.Combinator,
Text.Parsing.Report.String,
Text.Parsing.Report.Attoparsec
build-depends: base >=4.8,
bytestring,
attoparsec
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2
executable readelf-example
default-language: Haskell2010
other-modules: Text.Parsing.Report.Combinator,
Text.Parsing.Report.String,
Text.Parsing.Report.Attoparsec
main-is: readelf.hs
hs-source-dirs: examples,src
build-depends: base >=4.8,
bytestring,
attoparsec
ghc-options: -Wall -O2