2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 1.0.0.20190223
6 category: Data Structures
7 synopsis: Library for reading, validating and writing a subset of the XML format.
8 description: Symantics for an approximative implementation
9 of XML (eXtensible Markup Language) and RNC (RelaxNG Compact).
11 Motivation: Other Haskell libraries do not fit my needs or are too heavy/complex.
12 I like the principle to parse XML using some symantics,
13 which can both generate a Megaparsec parser to validate the XML tree,
14 and a RNC rendition of the schema it validates.
16 DISCLAMER: My life being's too short, I'm NOT burning my brain
17 on seriously conforming to the too complex XML and RNC formats.
18 Still I try to respect a vague subset of those,
19 unless it makes the code more complex than I am comfortable with.
21 WARNING: It's currently using an old symantic approach,
22 not the one developped in <https://hackage.haskell.org/package/symantic-http symantic-http>.
23 This may change when I'll get to it.
27 stability: experimental
28 author: Julien Moutinho <julm+symantic-xml@autogeree.net>
29 maintainer: Julien Moutinho <julm+symantic-xml@autogeree.net>
30 bug-reports: Julien Moutinho <julm+symantic-xml@autogeree.net>
35 tested-with: GHC==8.4.4
40 Source-Repository head
41 location: git://git.autogeree.net/symantic-xml
50 Symantic.RNC.Write.Fixity
51 Symantic.RNC.Write.Namespaces
55 Symantic.XML.Read.Parser
57 default-language: Haskell2010
71 -Wincomplete-uni-patterns
72 -Wincomplete-record-updates
74 -- -fhide-source-paths
79 , data-default-class >= 0.1
82 , hxt-charproperties >= 9.2
84 -- , parser-combinators >= 1.0
89 , unordered-containers >= 0.2.8
91 Test-Suite symantic-xml-test
92 type: exitcode-stdio-1.0
101 default-language: Haskell2010
110 -Wincomplete-uni-patterns
111 -Wincomplete-record-updates
116 , base >= 4.10 && < 5
119 , data-default-class >= 0.1
123 , megaparsec >= 7.0.4
125 , tasty-golden >= 2.3
127 , transformers >= 0.4
129 -- , QuickCheck >= 2.0
131 -- , tasty-quickcheck