packages feed

cef-0.1.0.0: cef.cabal

name:                cef
version:             0.1.0.0
synopsis:            CEF log format
description:         This library is used to produce CEF log lines
homepage:            http://github.com/picussecurity/haskell-cef.git
license:             BSD3
license-file:        LICENSE
author:              Picus Security
maintainer:          utdemir@picussecurity.com
category:            System
build-type:          Custom
cabal-version:       >=1.10

library
  exposed-modules:  System.Log.CEF
  other-modules:    System.Log.CEF.Extensions
  build-depends:    base >=4.7 && <4.9
                  , text
                  , bytestring
                  , time
  hs-source-dirs:   src
  default-language: Haskell2010

test-suite doctests
  type:    exitcode-stdio-1.0
  main-is: doctests.hs
  build-depends: base
               , doctest >= 0.9.1
               , directory
               , filepath
  ghc-options: -Wall -threaded
  hs-source-dirs: test
  default-language:  Haskell2010