summaryrefslogtreecommitdiff
path: root/tirclogv.cabal
blob: c1070abd927f4c512a7b7ed6fb411896e218bf4a (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cabal-version:   3.0
name:            tirclogv
version:         0.1.0.0
author:          Tom Smeding
maintainer:      Tom Smeding
license:         BSD-3-Clause
build-type:      Simple

executable tirclogv
  main-is: Main.hs
  other-modules:
    AtomicPrint
    Cache
    Calendar
    Config
    Debounce
    ImmutGrowVector
    Index
    Mmap
    Util
    ZNC
  build-depends:
    base >= 4.19,
    attoparsec,
    bytestring,
    clock,
    containers,
    directory,
    filepath,
    fsnotify,
    http-types,
    mustache,
    random,
    text >= 2.1.2,
    transformers,
    time,
    unix,
    vector,
    wai,
    warp >= 3.4.12
  hs-source-dirs: src
  c-sources: cbits/mmap.c
  default-language: Haskell2010
  default-extensions:
    ImportQualifiedPost
    LambdaCase
    MultiWayIf
    TypeApplications
    TupleSections
  ghc-options: -Wall -threaded

library mini-http
  exposed-modules:
    Network.HTTP.Server.Mini
    Network.HTTP.Server.Mini.Types
  other-modules:
    Network.HTTP.Server.Mini.Parser
  build-depends:
    base,
    bytestring,
    network,
    transformers,
    stm
  hs-source-dirs: mini-http
  default-language: Haskell2010
  default-extensions:
    ImportQualifiedPost
    LambdaCase
    MultiWayIf
  ghc-options: -Wall