hw-conduit-0.0.0.8: hw-conduit.cabal
name: hw-conduit
version: 0.0.0.8
synopsis: Conduits for tokenizing streams.
description: Please see README.md
homepage: http://github.com/haskell-works/hw-conduit#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
data-files: test/data/sample.json
executable hw-conduit-example
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall -msse4.2
build-depends: base >= 4
, criterion
, hw-conduit
default-language: Haskell2010
library
hs-source-dirs: src
exposed-modules: HaskellWorks.Data.Conduit.ByteString
, HaskellWorks.Data.Conduit.Json
, HaskellWorks.Data.Conduit.Json.Blank
, HaskellWorks.Data.Conduit.Json.Words
, HaskellWorks.Data.Conduit.List
build-depends: base >= 4.7 && < 5
, array
, bytestring
, conduit
, hw-bits
, resourcet
default-language: Haskell2010
ghc-options: -rtsopts -with-rtsopts=-N -Wall -O2 -Wall -msse4.2
test-suite hw-conduit-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: HaskellWorks.Data.Conduit.ByteStringSpec
, HaskellWorks.Data.Conduit.Json.BlankSpec
build-depends: base
, bytestring
, hspec
, hw-conduit
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/haskell-works/hw-conduit
benchmark bench
Type: exitcode-stdio-1.0
HS-Source-Dirs: bench
Main-Is: Main.hs
GHC-Options: -O2 -Wall -msse4.2
Default-Language: Haskell2010
Build-Depends: base >= 4 && < 5
, bytestring
, conduit
, criterion
, hw-conduit
, mmap
, resourcet
, vector