packages feed

bytestring-delta 0.1 → 0.1.0.1

raw patch · 2 files changed

+6/−6 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/ByteString/Delta.hsc view
@@ -1,4 +1,4 @@-{-# LANGUAGE ForeignFunctionInterface #-}+{-# LANGUAGE CPP, ForeignFunctionInterface #-} -- | -- Module:       Data.ByteString.Delta -- Copyright:    (c) Joseph Adams 2011@@ -46,14 +46,14 @@ import Foreign.C.String (CString, peekCAString) import Foreign.C.Types -#if MIN_VERSION_base(4,4,0)+##if MIN_VERSION_base(4,4,0) import Foreign.Marshal.Unsafe (unsafeLocalState)-#else+##else import System.IO.Unsafe (unsafePerformIO)  unsafeLocalState :: IO a -> a unsafeLocalState = unsafePerformIO-#endif+##endif  type BDELTAcode = #{type BDELTAcode} 
bytestring-delta.cabal view
@@ -1,5 +1,5 @@ Name:                bytestring-delta-Version:             0.1+Version:             0.1.0.1 Synopsis:            Simple, fast binary diff/patch Description:     Compute a patch between two ByteStrings which can later be applied to the@@ -36,7 +36,7 @@   Exposed-modules:     Data.ByteString.Delta   Build-depends:       base >= 4 && < 5, bytestring   Build-tools:         hsc2hs-  Extensions:          ForeignFunctionInterface+  Extensions:          CPP, ForeignFunctionInterface   GHC-Options:         -Wall -fno-warn-unused-imports   C-Sources:           bdelta.c   Include-Dirs:        .