packages feed

network-bytestring 0.1.1.2 → 0.1.1.3

raw patch · 2 files changed

+5/−5 lines, 2 filesdep −HUnitdep ~basedep ~network

Dependencies removed: HUnit

Dependency ranges changed: base, network

Files

Network/Socket/ByteString.cpphs view
@@ -1,4 +1,4 @@-{-# OPTIONS_GHC -cpp #-}+{-# LANGUAGE CPP, ForeignFunctionInterface #-}  -- | -- Module      : Network.Socket.ByteString@@ -40,7 +40,7 @@ import Data.Word (Word8) import Data.ByteString.Internal (createAndTrim) import Data.ByteString.Unsafe (unsafeUseAsCStringLen)-import Foreign.C.Error+import Foreign.C.Error (eAGAIN, eINTR, eWOULDBLOCK, getErrno, throwErrno) import Foreign.C.Types (CChar, CInt, CSize) import Foreign.Marshal.Alloc (allocaBytes) import Foreign.Ptr (Ptr, castPtr)
network-bytestring.cabal view
@@ -1,5 +1,5 @@ name:               network-bytestring-version:            0.1.1.2+version:            0.1.1.3 synopsis:           Fast and memory efficient low-level networking description:        Faster and more memory efficient low-level socket                     functions using 'Data.ByteString's instead of@@ -19,9 +19,9 @@   exposed-modules:  Network.Socket.ByteString    if flag(split-base)-    build-depends:  base >= 3, bytestring+    build-depends:  base >= 3 && < 3.1, bytestring   else     build-depends:  base < 3-  build-depends:    HUnit, network+  build-depends:    network >= 2.1 && < 2.3    extensions:       CPP, ForeignFunctionInterface