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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
cabal-version: 1.24
name: http-common
version: 0.8.3.4
synopsis: Common types for HTTP clients and servers
description:
/Overview/
.
Base types used by a variety of HTTP clients and servers. See http-streams
"Network.Http.Client" or pipes-http "Pipes.Http.Client" for full
documentation. You can import @Network.Http.Types@ if you like, but both
http-streams and pipes-http re-export this package's types and functions.
license: BSD3
license-file: LICENSE
author: Andrew Cowie <istathar@gmail.com>
maintainer: Andrew Cowie <istathar@gmail.com>
copyright: © 2012-2021 Athae Eredh Siniath and Others
category: Web
tested-with: GHC == 8.10
stability: experimental
homepage: https://github.com/aesiniath/http-common
bug-reports: https://github.com/aesiniath/http-common/issues
build-type: Simple
library
default-language: Haskell2010
build-depends: base >= 4 && <5,
directory,
base64-bytestring,
blaze-builder,
bytestring,
case-insensitive,
mtl,
random,
transformers,
network,
text,
unordered-containers
hs-source-dirs: lib
exposed-modules: Network.Http.Types,
Network.Http.RequestBuilder,
Network.Http.Internal
other-modules:
ghc-options: -Wall
-Wwarn
-fwarn-tabs
-funbox-strict-fields
-fno-warn-missing-signatures
-fno-warn-unused-binds
-fno-warn-unused-do-bind
include-dirs: .
source-repository head
type: git
location: git://github.com/aesiniath/http-common.git
-- vim: set tabstop=21 expandtab:
|