forked from byorgey/haxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haxr-browser.cabal
66 lines (60 loc) · 2.17 KB
/
haxr-browser.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Name: haxr-browser
Version: 0.0.3
Cabal-version: >=1.10
Build-type: Simple
Copyright: Bjorn Bringert, 2003-2006
License: BSD3
License-file: LICENSE
Author: Bjorn Bringert <bjorn@bringert.net>, Nikolaos Bezirgiannis <bezirg@gmail.com>
Maintainer: Nikolaos Bezirgiannis <bezirg@gmail.com>
Category: Network
Synopsis: XML-RPC client and server library.
Description:
HaXR is a library for writing XML-RPC
client and server applications in Haskell.
Extra-Source-Files:
CHANGES
examples/make-stubs.hs examples/parse_response.hs examples/Person.hs
examples/PersonTH.hs examples/person_client.hs examples/person_server.hs
examples/raw_call.hs examples/simple_client.hs examples/simple_server.hs
examples/test_client.hs examples/test_server.hs examples/time-xmlrpc-com.hs
examples/validate.hs examples/Makefile
Source-repository head
type: git
location: git://github.com/bezirg/haxr.git
flag network-uri
description: Get Network.URI from the network-uri package
default: True
Library
Build-depends: base < 5,
mtl,
mtl-compat,
network < 2.7,
HaXml >= 1.22 && < 1.26,
HTTP >= 4000,
bytestring,
base64-bytestring,
old-locale,
old-time,
time,
array,
utf8-string,
template-haskell,
blaze-builder >= 0.2 && < 0.5
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network-uri < 2.6, network < 2.6
Exposed-Modules:
Network.XmlRpc.Client,
Network.XmlRpc.Server,
Network.XmlRpc.Internals,
Network.XmlRpc.Introspect,
Network.XmlRpc.THDeriveXmlRpcType,
Network.XmlRpc.Pretty,
Network.XmlRpc.DTD_XMLRPC
Other-Modules:
Network.XmlRpc.Base64
Default-extensions: OverlappingInstances, TypeSynonymInstances, FlexibleInstances
Other-extensions: OverloadedStrings, GeneralizedNewtypeDeriving, TemplateHaskell
Default-language: Haskell2010