File: wai-logger.cabal

package info (click to toggle)
haskell-wai-logger 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 80 kB
  • sloc: haskell: 284; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download
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
cabal-version: >=1.10
name:          wai-logger
version:       2.4.1
license:       BSD3
license-file:  LICENSE
maintainer:    Kazu Yamamoto <kazu@iij.ad.jp>
author:        Kazu Yamamoto <kazu@iij.ad.jp>
tested-with:
    ghc ==7.8.4 || ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.3

synopsis:      A logging system for WAI
description:   A logging system for WAI(Web Application Interface)
category:      Web, Yesod
build-type:    Simple

source-repository head
    type:     git
    location: https://github.com/kazu-yamamoto/logger.git

library
    exposed-modules:  Network.Wai.Logger
    other-modules:
        Network.Wai.Logger.Apache
        Network.Wai.Logger.IP
        Network.Wai.Logger.IORef

    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4 && <5,
        byteorder,
        bytestring,
        fast-logger >=3,
        http-types,
        network,
        wai >=2.0.0

    if impl(ghc >=8)
        default-extensions: Strict StrictData