snappy 0.2.0.1 → 0.2.0.2
raw patch · 4 files changed
+5/−8 lines, 4 filesdep −cmdargsdep −timedep −zlib
Dependencies removed: cmdargs, time, zlib
Files
- Codec/Compression/Snappy.hs +1/−1
- Codec/Compression/Snappy/Internal.hs +1/−1
- Codec/Compression/Snappy/Lazy.hsc +1/−1
- snappy.cabal +2/−5
Codec/Compression/Snappy.hs view
@@ -24,7 +24,7 @@ import Codec.Compression.Snappy.Internal (check, maxCompressedLength) import Data.ByteString.Internal (ByteString(..), mallocByteString) import Data.Word (Word8, Word32)-import Foreign.C.Types (CInt, CSize)+import Foreign.C.Types (CInt(..), CSize(..)) import Foreign.ForeignPtr (withForeignPtr) import Foreign.Marshal.Alloc (alloca) import Foreign.Marshal.Utils (with)
Codec/Compression/Snappy/Internal.hs view
@@ -22,7 +22,7 @@ ) where import Control.Monad (when)-import Foreign.C.Types (CSize)+import Foreign.C.Types (CSize(..)) maxCompressedLength :: Int -> Int maxCompressedLength = fromIntegral . c_MaxCompressedLength . fromIntegral
Codec/Compression/Snappy/Lazy.hsc view
@@ -34,7 +34,7 @@ import Data.ByteString.Internal hiding (ByteString) import Data.ByteString.Lazy.Internal (ByteString(..)) import Data.Word (Word8, Word32)-import Foreign.C.Types (CInt, CSize)+import Foreign.C.Types (CInt(..), CSize(..)) import Foreign.ForeignPtr (touchForeignPtr, withForeignPtr) import Foreign.Marshal.Alloc (alloca) import Foreign.Marshal.Array (withArray)
snappy.cabal view
@@ -1,5 +1,5 @@ name: snappy-version: 0.2.0.1+version: 0.2.0.2 homepage: http://github.com/bos/snappy bug-reports: http://github.com/bos/snappy/issues synopsis:@@ -55,13 +55,10 @@ build-depends: base < 5, bytestring,- cmdargs, QuickCheck >= 2.4, snappy, test-framework,- test-framework-quickcheck2,- time,- zlib+ test-framework-quickcheck2 source-repository head type: git