xml-conduit 1.1.0.3 → 1.1.0.4
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- Text/XML/Stream/Parse.hs +2/−1
- xml-conduit.cabal +1/−1
Text/XML/Stream/Parse.hs view
@@ -4,6 +4,7 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE PatternGuards #-} {-# LANGUAGE ImpredicativeTypes #-}+{-# LANGUAGE BangPatterns #-} -- | This module provides both a native Haskell solution for parsing XML -- documents into a stream of events, and a set of parser combinators for -- dealing with a stream of events.@@ -277,7 +278,7 @@ toEventC = go [] [] where- go es levels =+ go !es !levels = await >>= maybe (return ()) push where push (position, token) =
xml-conduit.cabal view
@@ -1,5 +1,5 @@ name: xml-conduit-version: 1.1.0.3+version: 1.1.0.4 license: BSD3 license-file: LICENSE author: Michael Snoyman <michaels@suite-sol.com>, Aristid Breitkreuz <aristidb@googlemail.com>