summaryrefslogtreecommitdiff
path: root/logstat.cabal
blob: c38c42bd64ab9c60a171bef1310a65667225426e (plain)
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
name:                logstat
version:             0.1.0.0
homepage:            https://dev.yorhel.nl/
license:             MIT
license-file:        LICENSE
author:              Yoran Heling
maintainer:          projects@yorhel.nl
build-type:          Simple
cabal-version:       >=1.10

executable logstat
  main-is:             Logstat/Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010
  build-depends: base
    , attoparsec
    , bytestring
    , containers
    , directory
    , filepath
    , heaps
    , megaparsec
    , mtl
    , optparse-applicative
    , pcre-light
    , text
  other-modules:
    Logstat.Eval
    Logstat.Parse
    Logstat.Types
    Logstat.Value


test-suite tests
  main-is:             Tests/Main.hs
  type:                exitcode-stdio-1.0
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010
  build-depends: base
    , attoparsec
    , bytestring
    , containers
    , directory
    , filepath
    , heaps
    , megaparsec
    , mtl
    , pcre-light
    , text
    , HUnit
  other-modules:
    Logstat.Eval
    Logstat.Parse
    Logstat.Types
    Logstat.Value