attoparsec 0.13.1.0 → 0.13.2.0
raw patch · 2 files changed
+21/−3 lines, 2 filesdep ~QuickCheck
Dependency ranges changed: QuickCheck
Files
- Data/Attoparsec/Internal/Types.hs +1/−1
- attoparsec.cabal +20/−2
Data/Attoparsec/Internal/Types.hs view
@@ -180,7 +180,7 @@ {-# INLINE apP #-} instance Applicative (Parser i) where- pure v = Parser $ \t pos more _lose succ -> succ t pos more v+ pure v = Parser $ \t !pos more _lose succ -> succ t pos more v {-# INLINE pure #-} (<*>) = apP {-# INLINE (<*>) #-}
attoparsec.cabal view
@@ -1,5 +1,5 @@ name: attoparsec-version: 0.13.1.0+version: 0.13.2.0 license: BSD3 license-file: LICENSE category: Text, Parsing@@ -98,6 +98,24 @@ QC.Text.FastSet QC.Text.Regressions + other-modules: Data.Attoparsec.ByteString+ Data.Attoparsec.ByteString.Buffer+ Data.Attoparsec.ByteString.Char8+ Data.Attoparsec.ByteString.FastSet+ Data.Attoparsec.ByteString.Internal+ Data.Attoparsec.ByteString.Lazy+ Data.Attoparsec.Combinator+ Data.Attoparsec.Internal+ Data.Attoparsec.Internal.Fhthagn+ Data.Attoparsec.Internal.Types+ Data.Attoparsec.Number+ Data.Attoparsec.Text+ Data.Attoparsec.Text.Buffer+ Data.Attoparsec.Text.FastSet+ Data.Attoparsec.Text.Internal+ Data.Attoparsec.Text.Lazy+ Data.Attoparsec.Zepto+ ghc-options: -Wall -threaded -rtsopts @@ -109,7 +127,7 @@ base >= 4 && < 5, bytestring, deepseq >= 1.1,- QuickCheck >= 2.7,+ QuickCheck >= 2.7 && < 2.10, quickcheck-unicode, scientific, tasty >= 0.11,