2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.0.20190118
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.
23 stability: experimental
24 author: Julien Moutinho <julm+symantic-xml@autogeree.net>
25 maintainer: Julien Moutinho <julm+symantic-xml@autogeree.net>
26 bug-reports: Julien Moutinho <julm+symantic-xml@autogeree.net>
31 tested-with: GHC==8.4.4
36 Source-Repository head
37 location: git://git.autogeree.net/symantic-xml
43 Language.Symantic.RNC.Sym
44 Language.Symantic.RNC.Validate
45 Language.Symantic.RNC.Write
46 Language.Symantic.RNC.Write.Fixity
47 Language.Symantic.RNC.Write.Namespaces
49 Language.Symantic.XML.Document
50 Language.Symantic.XML.Parser
51 Language.Symantic.XML.Read
52 Language.Symantic.XML.Read.Parser
53 Language.Symantic.XML.Write
54 default-language: Haskell2010
68 -Wincomplete-uni-patterns
69 -Wincomplete-record-updates
71 -- -fhide-source-paths
76 , data-default-class >= 0.1
79 , hxt-charproperties >= 9.2
81 -- , parser-combinators >= 1.0
86 , unordered-containers >= 0.2.8
88 Test-Suite symantic-xml-test
89 type: exitcode-stdio-1.0
96 default-language: Haskell2010
105 -Wincomplete-uni-patterns
106 -Wincomplete-record-updates
111 , base >= 4.10 && < 5
116 , megaparsec >= 7.0.4
118 , tasty-golden >= 2.3
120 , transformers >= 0.4
122 -- , QuickCheck >= 2.0
124 -- , tasty-quickcheck