]> Git — Sourcephile - haskell/symantic-http.git/blob - symantic-http-client/symantic-http-client.cabal
stack: bump to lts-14.13
[haskell/symantic-http.git] / symantic-http-client / symantic-http-client.cabal
1 name: symantic-http-client
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.1.20190410
6 category: Protocol
7 synopsis: symantic-http applied to the derivation of HTTP clients
8 description:
9 This library applies <https://hackage.haskell.org/package/symantic-http symantic-http>
10 to the building of an HTTP client (request building and response decoding)
11 based upon <https://hackage.haskell.org/package/http-client http-client>.
12 .
13 For learning how to use this library,
14 you can read the demo example
15 in <git://git.autogeree.net/symantic-http symantic-http.git>.
16 extra-doc-files:
17 license: GPL-3
18 license-file: COPYING
19 stability: experimental
20 author: Julien Moutinho <julm+symantic-http@autogeree.net>
21 maintainer: Julien Moutinho <julm+symantic-http@autogeree.net>
22 bug-reports: Julien Moutinho <julm+symantic-http@autogeree.net>
23 -- homepage:
24
25 build-type: Simple
26 cabal-version: 1.24
27 tested-with: GHC==8.6.5
28 extra-source-files:
29 stack.yaml
30 extra-tmp-files:
31
32 Source-Repository head
33 location: git://git.autogeree.net/symantic-http
34 type: git
35
36 Library
37 exposed-modules:
38 Symantic.HTTP.Client
39 default-language: Haskell2010
40 default-extensions:
41 AllowAmbiguousTypes
42 DataKinds
43 FlexibleContexts
44 FlexibleInstances
45 InstanceSigs
46 LambdaCase
47 MultiParamTypeClasses
48 NamedFieldPuns
49 NoImplicitPrelude
50 RecordWildCards
51 ScopedTypeVariables
52 TupleSections
53 TypeApplications
54 TypeFamilies
55 TypeOperators
56 ghc-options:
57 -Wall
58 -Wincomplete-uni-patterns
59 -Wincomplete-record-updates
60 -fno-warn-tabs
61 -- -fhide-source-paths
62 build-depends:
63 symantic-http >= 0.1.1
64 , base >= 4.10 && < 5
65 , base64-bytestring >= 1.0
66 , bytestring >= 0.10
67 , containers >= 0.5
68 , http-api-data >= 0.4
69 , http-client >= 0.5.12
70 , http-media >= 0.7
71 , http-types >= 0.12
72 , monad-classes >= 0.3.2
73 , network-uri >= 2.6
74 , stm >= 2.4.5
75 , text >= 1.2
76 , time >= 1.8
77 , transformers >= 0.5
78 , word8 >= 0.1.3
79 -- pkgconfig-depends: zlib
80 -- extra-libraries: z
81