packages feed

network-attoparsec-0.12.2: network-attoparsec.cabal

name: network-attoparsec
category: Network, Parsing
version: 0.12.2
license: MIT
license-file: LICENSE
copyright: (c) 2015 Leon Mergen
author: Leon Mergen
maintainer: leon@solatis.com
homepage: http://github.com/solatis/haskell-network-attoparsec
bug-reports: http://github.com/solatis/haskell-network-attoparsec/issues
stability: experimental
synopsis: Utility functions for running a parser against a socket
description: Utility functions for running a parser against a socket, without the need of a bigger framework such as Pipes or Conduit.
build-type: Simple
data-files: LICENSE, README.md
cabal-version: >= 1.10
tested-with: GHC == 7.6, GHC == 7.8

library
  hs-source-dirs:      src
  ghc-options:         -Wall -ferror-spans
  default-language:    Haskell2010

  exposed-modules:     Network.Attoparsec

  build-depends:       base                     >= 4.3          && < 5
                     , lifted-base
                     , monad-control
                     , transformers
                     , exceptions
                     , enclosed-exceptions

                     , mtl
                     , network
                     , attoparsec
                     , bytestring

test-suite test-suite
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall -ferror-spans -threaded -auto-all -caf-all -fno-warn-type-defaults
  default-language:    Haskell2010
  hs-source-dirs:      test
  main-is:             Main.hs

  other-modules:       Network.AttoparsecSpec
                       Spec
                       Main

  build-depends:       base                     >= 4.3          && < 5
                     , hspec

                     , exceptions
                     , transformers
                     , bytestring
                     , mtl
                     , network
                     , network-simple
                     , attoparsec
                     , network-attoparsec

source-repository head
  type: git
  location: git://github.com/solatis/haskell-network-attoparsec.git
  branch: master