]> git.immae.eu Git - github/fretlink/text-pipes.git/commitdiff
depend on streaming commons
authormichaelt <what_is_it_to_do_anything@yahoo.com>
Wed, 4 Jun 2014 17:03:50 +0000 (13:03 -0400)
committermichaelt <what_is_it_to_do_anything@yahoo.com>
Wed, 4 Jun 2014 17:03:50 +0000 (13:03 -0400)
Pipes/Text/Encoding.hs
pipes-text.cabal

index 37a4aa3f8ad6dfe470110db1abc31d61fd75d8e9..e00cd430e20771d1ebda6b6c0f2de8bf8a280175 100644 (file)
@@ -52,7 +52,8 @@ import Data.ByteString.Char8 as B8
 import Data.Text (Text)
 import qualified Data.Text as T 
 import qualified Data.Text.Encoding as TE 
-import Data.Text.StreamDecoding
+import qualified Data.Streaming.Text as Stream
+import Data.Streaming.Text (DecodeResult(..))
 import Control.Monad (join)
 import Data.Word (Word8)
 import Pipes
@@ -202,27 +203,27 @@ decodeStream = loop where
 
 
 decodeUtf8 :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf8 = decodeStream streamUtf8
+decodeUtf8 = decodeStream Stream.decodeUtf8
 {-# INLINE decodeUtf8 #-}
 
 decodeUtf8Pure :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf8Pure = decodeStream streamUtf8Pure
+decodeUtf8Pure = decodeStream Stream.decodeUtf8Pure
 {-# INLINE decodeUtf8Pure #-}
 
 decodeUtf16LE :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf16LE = decodeStream streamUtf16LE
+decodeUtf16LE = decodeStream Stream.decodeUtf16LE
 {-# INLINE decodeUtf16LE #-}
 
 decodeUtf16BE :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf16BE = decodeStream streamUtf16BE
+decodeUtf16BE = decodeStream Stream.decodeUtf16BE
 {-# INLINE decodeUtf16BE #-}
 
 decodeUtf32LE :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf32LE = decodeStream streamUtf32LE
+decodeUtf32LE = decodeStream Stream.decodeUtf32LE
 {-# INLINE decodeUtf32LE #-}
 
 decodeUtf32BE :: Monad m => Producer ByteString m r -> Producer Text m (Producer ByteString m r)
-decodeUtf32BE = decodeStream streamUtf32BE
+decodeUtf32BE = decodeStream Stream.decodeUtf32BE
 {-# INLINE decodeUtf32BE #-}
 
 
index f4e554df148679f95be1019365b93069442a802b..4f1602c5b421735dc7d7df1a65fb73b032be81b2 100644 (file)
@@ -1,5 +1,5 @@
 name:                pipes-text
-version:             0.0.0.10
+version:             0.0.0.11
 synopsis:            Text pipes.
 description:         * This package will be in a draft, or testing, phase until version 0.0.1. Please report any installation difficulties, or any wisdom about the api, on the github page or the <https://groups.google.com/forum/#!forum/haskell-pipes pipes list>
                      .
@@ -34,17 +34,18 @@ flag noio
 
 library
   exposed-modules:     Pipes.Text, Pipes.Text.Encoding
-  build-depends:       base >= 4                  && < 5  ,
-                       bytestring >= 0.9                  ,
-                       text >=0.11.2              && < 1.2,
-                       text-stream-decode >= 0.1  && < 0.2,  
-                       profunctors  >= 3.1.1      && < 4.1,
-                       pipes >=4.0                && < 4.2,
-                       pipes-group  >= 1.0.0      && < 1.1,
-                       pipes-parse >=2.0          && < 3.1,
-                       pipes-safe, 
-                       pipes-bytestring >= 1.0    && < 2.1,
-                       transformers >= 0.2.0.0    && < 0.4
+  build-depends:       base              >= 4       && < 5   ,
+                       bytestring        >= 0.9.2.1 && < 0.11,
+                       text              >= 0.11.2  && < 1.2 ,
+                       streaming-commons >= 0.1     && < 0.2 ,  
+                       profunctors       >= 3.1.1   && < 4.1 ,
+                       pipes             >= 4.0     && < 4.2 ,
+                       pipes-group       >= 1.0.0   && < 1.1 ,
+                       pipes-parse       >= 3.0.0   && < 3.1 ,
+                       pipes-safe        >= 2.1     && < 2.3 , 
+                       pipes-bytestring  >= 1.0     && < 2.1 ,
+                       transformers      >= 0.2.0.0 && < 0.5
+
   other-extensions:    RankNTypes
   default-language:    Haskell2010
   ghc-options: -O2