This repository was archived by the owner on Sep 3, 2024. It is now read-only.
File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ 2024-03-25 David Simmons-Duffin <
[email protected] > 0.5.7
2
+
3
+ * Bump bytestring and deepseq versions to build with GHC 9.8.
4
+
1
5
2022-08-30 Facundo Domínguez <
[email protected] > 0.5.6
2
6
3
7
* Fix extension fields in the cabal file (#41).
Original file line number Diff line number Diff line change 1
1
Name : network-transport
2
- Version : 0.5.6
2
+ Version : 0.5.7
3
3
Cabal-Version : >= 1.10
4
4
Build-Type : Simple
5
5
License : BSD3
@@ -66,10 +66,10 @@ Source-Repository head
66
66
Library
67
67
Build-Depends : base >= 4.6 && < 5 ,
68
68
binary >= 0.5 && < 0.9 ,
69
- bytestring >= 0.9 && < 0.12 ,
69
+ bytestring >= 0.9 && < 0.13 ,
70
70
hashable >= 1.2.0.5 && < 1.5 ,
71
71
transformers >= 0.2 && < 0.7 ,
72
- deepseq >= 1.0 && < 1.5
72
+ deepseq >= 1.0 && < 1.6
73
73
if impl(ghc < 7.6 )
74
74
Build-Depends : ghc-prim >= 0.2 && < 0.4
75
75
Exposed-Modules : Network.Transport,
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ import qualified Data.ByteString as BS (copy)
29
29
import qualified Data.ByteString.Char8 as BSC (unpack )
30
30
import Control.DeepSeq (NFData (rnf ))
31
31
import Control.Exception (Exception )
32
- import Control.Applicative ((<$>) )
33
32
import Data.Typeable (Typeable )
34
33
import Data.Binary (Binary (.. ))
35
34
import Data.Hashable
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ import qualified Data.ByteString.Internal as BSI
37
37
, toForeignPtr
38
38
)
39
39
import Data.Word (Word32 , Word16 )
40
- import Control.Applicative ((<$>) )
41
40
import Control.Monad.IO.Class (MonadIO , liftIO )
42
41
import Control.Exception
43
42
( IOException
You can’t perform that action at this time.
0 commit comments