packages feed

streaming-attoparsec-1.0.0.1: streaming-attoparsec.cabal

cabal-version: 2.2

name:         streaming-attoparsec
version:      1.0.0.1
synopsis:     Attoparsec integration for the streaming ecosystem
description:  Attoparsec integration for the streaming ecosystem.
category:     Streaming
homepage:     https://github.com/haskell-streaming/streaming-attoparsec
author:       Michael Thompson
maintainer:   Colin Woodbury, colin@fosskers.ca
license:      BSD-3-Clause
license-file: LICENSE
build-type:   Simple

extra-source-files:
    README.md
    CHANGELOG.md

common commons
  default-language: Haskell2010
  ghc-options: -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
  build-depends:
      base >= 4.7 && < 5
    , attoparsec >= 0.13
    , bytestring
    , streaming >= 0.1.4.5
    , streaming-bytestring >= 0.1.4.0

library
  import: commons
  hs-source-dirs: ./.
  exposed-modules: Data.Attoparsec.ByteString.Streaming

test-suite streaming-attoparsec-test
  import: commons
  type: exitcode-stdio-1.0
  main-is: Test.hs
  hs-source-dirs: test
  ghc-options: -threaded -with-rtsopts=-N
  build-depends:
      streaming-attoparsec
    , tasty >=0.11
    , tasty-hunit >=0.9