packages feed

multipart-0.2.1: multipart.cabal

name:                multipart
version:             0.2.1
synopsis:            Parsers for the HTTP multipart format
description:         Parsers and data types for the HTTP multipart format from RFC2046.
copyright:           Bjorn Bringert, Andy Gill, Anders Kaseorg, Ian Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw
category:            Network
maintainer:          code@silk.co
author:              Silk B.V.
homepage:            http://www.github.com/silkapp/multipart
license:             BSD3
license-file:        LICENSE
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1

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

source-repository head
  type:              git
  location:          https://github.com/silkapp/multipart.git

library
  default-language:  Haskell2010
  ghc-options:       -Wall
  exposed-modules:
    Network.Multipart
    Network.Multipart.Header
  build-depends:
      base >= 3 && < 5
    , bytestring >= 0.10.8.0 && < 0.11
    , parsec >= 2.0
    , stringsearch