File: multipart.cabal

package info (click to toggle)
haskell-multipart 0.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 100 kB
  • sloc: haskell: 267; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 1,114 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name:                multipart
version:             0.2.1
x-revision: 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.12
    , parsec >= 2.0
    , stringsearch