-
Notifications
You must be signed in to change notification settings - Fork 0
/
wsdl.cabal
45 lines (41 loc) · 1.37 KB
/
wsdl.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
-- Initial wsdl.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: wsdl
version: 0.1.0.1
synopsis: WSDL parsing in Haskell
description:
DO NOT USE, UNSTABLE AND INCOMPLETE.
.
This library provides a definition of, parsing and [TODO] generation of WSDL documents.
license: GPL-3
license-file: LICENSE
author: Jude Taylor
maintainer: [email protected]
category: XML
build-type: Simple
cabal-version: >=1.10
extra-source-files: tests/hello.wsdl
source-repository head
type: git
location: https://github.com/pikajude/hs-wsdl.git
library
exposed-modules: Text.XML.WSDL.Types
Text.XML.WSDL.Parser
build-depends: base >= 4.7 && < 5
, bytestring
, conduit
, exceptions
, mtl
, network-uri
, resourcet
, text
, xml-conduit
, xml-types
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite spec
type: exitcode-stdio-1.0
main-is: hspec.hs
hs-source-dirs: tests
build-depends: base, bytestring, file-embed, hspec, network-uri, wsdl