conduit-parse-0.2.1.0: conduit-parse.cabal
name: conduit-parse
version: 0.2.1.0
synopsis: Parsing framework based on conduit.
description: Please refer to README.
homepage: https://github.com/k0ral/conduit-parse
license: PublicDomain
license-file: LICENSE
author: koral <koral@mailoo.org>
maintainer: koral <koral@mailoo.org>
category: Conduit, Text
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
source-repository head
type: git
location: git://github.com/k0ral/conduit-parse.git
flag enable-hlint-test
description: Enable hlint test-suite
manual: True
default: False
library
exposed-modules:
Data.Conduit.Parser
other-modules:
Data.Conduit.Parser.Internal
build-depends:
base >= 4.8 && < 5
, conduit >= 1.3
, dlist
, mtl
, parsers
, safe
, safe-exceptions
, text
, transformers
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base >= 4.8 && < 5
, conduit >= 1.3
, conduit-parse
, mtl
, parsers
, resourcet
, safe-exceptions
, tasty
, tasty-hunit
-- , tasty-quickcheck
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
test-suite hlint
if flag(enable-hlint-test)
buildable: True
else
buildable: False
type: exitcode-stdio-1.0
main-is: HLint.hs
build-depends:
base >=4.8,
hlint -any
default-language: Haskell2010
hs-source-dirs: test