packages feed

hw-diagnostics-0.0.0.1: hw-diagnostics.cabal

name:                   hw-diagnostics
version:                0.0.0.1
synopsis:               Conduits for tokenizing streams.
description:            Please see README.md
homepage:               http://github.com/haskell-works/hw-diagnostics#readme
license:                BSD3
license-file:           LICENSE
author:                 John Ky
maintainer:             newhoggy@gmail.com
copyright:              2016 John Ky
category:               Data, Conduit
build-type:             Simple
extra-source-files:     README.md
cabal-version:          >= 1.10

executable hw-diagnostics-example
  hs-source-dirs:       app
  main-is:              Main.hs
  ghc-options:          -threaded -rtsopts -with-rtsopts=-N -Wall -msse4.2
  build-depends:        base            >= 4       && < 5   ,
                        bytestring                          ,
                        conduit                             ,
                        criterion       >= 1.1.0.0 && < 1.2 ,
                        hw-diagnostics                      ,
                        mmap                                ,
                        resourcet                           ,
                        vector          >= 0.6     && < 0.12
  default-language:     Haskell2010

library
  hs-source-dirs:       src
  exposed-modules:      HaskellWorks.Diagnostics
                      , HaskellWorks.Diagnostics.Time
  build-depends:        base                            >= 4.7  && < 5
                      , array
                      , attoparsec                      >= 0.10
                      , bytestring
                      , conduit                         >= 1.1  && < 1.3
                      , deepseq                         <  1.5
                      , ghc-prim
                      , lens
                      , mmap
                      , mono-traversable
                      , parsec
                      , QuickCheck
                      , random
                      , resourcet                       >= 1.1
                      , safe
                      , text
                      , vector
                      , word8

  default-language:     Haskell2010
  ghc-options:          -rtsopts -with-rtsopts=-N -Wall -msse4.2

test-suite hw-diagnostics-test
  type:                 exitcode-stdio-1.0
  hs-source-dirs:       test
  main-is:              Spec.hs
  other-modules:        HaskellWorks.DiagnosticsSpec
  build-depends:        base
                      , hspec                           >= 1.3
                      , QuickCheck
  ghc-options:          -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:     Haskell2010

source-repository head
  type:     git
  location: https://github.com/haskell-works/hw-diagnostics