xml-picklers 0.2 → 0.2.1
raw patch · 2 files changed
+9/−7 lines, 2 files
Files
- src/Data/XML/Pickle.hs +7/−3
- xml-picklers.cabal +2/−4
src/Data/XML/Pickle.hs view
@@ -153,7 +153,7 @@ -- | Tuple combinators apply their picklers from left to right , xp2Tuple , xpPair- , (<++>)+ , (<#>) , xp3Tuple , xpTriple , xp4Tuple@@ -183,8 +183,12 @@ , xpClean , xpRecursiveClean- -- * Exceptions- , UnresolvedEntityException+ -- * Error handling+ , UnpickleError(..)+ , (<++>)+ , (<?+>)+ , (<?>)+ , UnresolvedEntityException(..) -- * helper functions , flattenContent ) where
xml-picklers.cabal view
@@ -1,6 +1,6 @@ Cabal-Version: >= 1.2 Name: xml-picklers-Version: 0.2+Version: 0.2.1 Synopsis: XML picklers based on xml-types, ported from hexpat-pickle Description: A library of combinators that allows Haskell data structures to be pickled@@ -8,9 +8,7 @@ . Release history .- [0.2] Error system overhaul.- .- New picklers: @xpSubsetAll@, @xpElems@+ [0.2] Error system overhaul. New picklers: @xpSubsetAll@, @xpElems@ . [0.1] Initial release Category: XML