packages feed

stream-0.1.0.0: stream.cabal

name:                stream
version:             0.1.0.0
synopsis:            Initial project template from stack
description:         Please see README.md
homepage:            https://github.com/githubuser/stream#readme
license:             MIT
license-file:        LICENSE
author:              Michael Snoyman
maintainer:          michael@fpcomplete.com
copyright:           2016 FP Complete
category:            Data
build-type:          Simple
extra-source-files:  README.md ChangeLog.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Stream
                       Stream.Core
                       Stream.Core.Internal
  build-depends:       base >= 4.7 && < 5
                     , bytestring
                     , exceptions
                     , mtl
                     , streaming-commons
                     , transformers
  default-language:    Haskell2010

test-suite stream-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , bytestring
                     , hspec
                     , stream
                     , temporary
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

benchmark stream-bench
  type:                exitcode-stdio-1.0
  hs-source-dirs:      bench
  main-is:             stream-bench.hs
  build-depends:       base
                     , bytestring
                     , criterion
                     , ghc-prim
                     , stream
                     , temporary
                     , vector
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -O2
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/githubuser/stream