-
Notifications
You must be signed in to change notification settings - Fork 6
/
multipart.cabal
35 lines (32 loc) · 1.07 KB
/
multipart.cabal
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
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: [email protected]
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.13
, parsec >= 2.0
, stringsearch