-
Notifications
You must be signed in to change notification settings - Fork 2
/
curl-aeson.cabal
48 lines (46 loc) · 2.14 KB
/
curl-aeson.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
36
37
38
39
40
41
42
43
44
45
46
47
48
cabal-version: >=1.10
name: curl-aeson
version: 0.1.0.2
synopsis: Communicate with web services using JSON
description: A library for communicating with JSON over HTTP(S)
or any other protocols supported by cURL.
.
Supports rich set of connectivity
features provided by libcurl combined to the
performance and elegancy of aeson.
.
All HTTP methods are supported. Instances of 'ToJSON'
and 'FromJSON' typeclasses can be transferred via
this library. Session cookies and other HTTP options
may be passed to libcurl if needed.
.
This library is at its best when communicating with
simple, non-standardized JSON interfaces. If you are
implementing JSON-RPC compliant client or server,
take a look at
<http://hackage.haskell.org/package/jmacro-rpc>.
category: Network, Web, JSON
license: BSD3
license-file: LICENSE
author: Joel Lehtonen
maintainer: [email protected]
homepage: https://github.com/zouppen/haskell-curl-aeson
bug-reports: https://github.com/zouppen/haskell-curl-aeson/issues
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/zouppen/haskell-curl-aeson.git
library
exposed-modules: Network.Curl.Aeson
other-modules: Network.Curl.Aeson.Internal
other-extensions: RecordWildCards, OverloadedStrings
build-depends: base ==4.*,
aeson >= 0.6,
curl >=1.3 && <1.4,
-- Text and ByteString dependencies should be
-- in-line with aeson dependencies
bytestring >=0.10.8.1 && <0.12,
text >=1.2.3.0 && <1.3 || >=2.0 && <2.1
hs-source-dirs: src
default-language: Haskell2010