forked from HaXml/HaXml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HaXml.cabal
170 lines (158 loc) · 4.64 KB
/
HaXml.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
cabal-version: 1.18
name: HaXml
version: 1.25.12
x-revison: 1
license: LGPL-2.1
license-files: COPYRIGHT, LICENCE-GPL, LICENCE-LGPL
author: Malcolm Wallace <[email protected]>
maintainer: Jens Petersen <[email protected]>
homepage: https://github.com/HaXml/HaXml
bug-reports: https://github.com/HaXml/HaXml/issues
category: Text, XML
synopsis: Utilities for manipulating XML documents
description:
Haskell utilities for parsing, filtering, transforming and
generating XML documents.
build-type: Simple
extra-doc-files: Changelog.md README
tested-with:
GHC ==9.6.0
|| ==9.4.4
|| ==9.2.5
|| ==9.0.2
|| ==8.10.7
|| ==8.8.4
|| ==8.6.5
|| ==8.4.4
|| ==8.2.2
|| ==8.0.2
|| ==7.10.3
|| ==7.8.4
|| ==7.6.3
|| ==7.4.2
|| ==7.2.2
|| ==7.0.4
source-repository this
type: git
location: https://github.com/HaXml/HaXml.git
tag: v1.25.6
library
exposed-modules:
Text.XML.HaXml,
Text.XML.HaXml.ByteStringPP,
Text.XML.HaXml.Combinators,
Text.XML.HaXml.DtdToHaskell.Convert,
Text.XML.HaXml.DtdToHaskell.Instance,
Text.XML.HaXml.DtdToHaskell.TypeDef,
Text.XML.HaXml.Escape,
Text.XML.HaXml.Html.Generate,
Text.XML.HaXml.Html.Parse,
Text.XML.HaXml.Html.ParseLazy,
Text.XML.HaXml.Html.Pretty,
Text.XML.HaXml.Lex,
Text.XML.HaXml.Namespaces,
Text.XML.HaXml.OneOfN,
Text.XML.HaXml.Parse,
Text.XML.HaXml.ParseLazy,
Text.XML.HaXml.Posn,
Text.XML.HaXml.Pretty,
Text.XML.HaXml.SAX,
Text.XML.HaXml.Schema.Parse,
Text.XML.HaXml.Schema.XSDTypeModel,
Text.XML.HaXml.Schema.HaskellTypeModel,
Text.XML.HaXml.Schema.NameConversion,
Text.XML.HaXml.Schema.TypeConversion,
Text.XML.HaXml.Schema.PrettyHaskell,
Text.XML.HaXml.Schema.PrettyHsBoot,
Text.XML.HaXml.Schema.PrimitiveTypes,
Text.XML.HaXml.Schema.Environment,
Text.XML.HaXml.ShowXmlLazy,
Text.XML.HaXml.Types,
Text.XML.HaXml.TypeMapping,
Text.XML.HaXml.Util,
Text.XML.HaXml.Validate,
Text.XML.HaXml.Verbatim,
Text.XML.HaXml.Version
Text.XML.HaXml.Wrappers,
Text.XML.HaXml.XmlContent,
Text.XML.HaXml.XmlContent.Parser,
Text.XML.HaXml.XmlContent.Haskell,
Text.XML.HaXml.Xtract.Combinators,
Text.XML.HaXml.Xtract.Lex,
Text.XML.HaXml.Xtract.Parse
if impl(ghc)
exposed-modules:
Text.XML.HaXml.Schema.Schema
hs-source-dirs: src
build-depends:
base >= 4.3.1.0 && < 4.19,
bytestring >= 0.9.1.10 && < 0.12,
containers >= 0.4.0.0 && <0.7,
filepath >= 1.2.0.0 && <1.5,
pretty >= 1.0.1.2 && <1.2,
random >= 1.0 && <1.3,
polyparse >= 1.12.1 && <1.14
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.18.5 && < 0.19
default-language: Haskell98
default-extensions: CPP, ExistentialQuantification
nhc98-options: -K10M
if impl(ghc >= 8.2)
ghc-options: -fhide-source-paths
Executable Canonicalise
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: Canonicalise.hs
build-depends: base, HaXml, pretty
Executable CanonicaliseLazy
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: CanonicaliseLazy.hs
build-depends: base, HaXml, pretty
Executable Xtract
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: Xtract.hs
build-depends: base, HaXml, pretty
Executable Validate
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: Validate.hs
build-depends: base, HaXml
Executable MkOneOf
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: MkOneOf.hs
build-depends: base, HaXml
Executable DtdToHaskell
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: DtdToHaskell.hs
build-depends: base, HaXml, pretty
Executable XsdToHaskell
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: XsdToHaskell.hs
build-depends: base, HaXml, pretty, polyparse, directory
Executable FpMLToHaskell
GHC-Options: -Wall
Default-Language: Haskell98
Default-Extensions: CPP
Hs-Source-Dirs: src/tools
Main-Is: FpMLToHaskell.hs
build-depends: base, HaXml, pretty, polyparse, directory