11name : socket-unix
2- version : 0.2 .0.0
2+ version : 0.3 .0.0
33synopsis : Unix domain sockets
44description : A Unix domain socket extension for the socket library
55homepage : https://github.com/vyacheslavhashov/haskell-socket-unix#readme
6- license : MIT
6+ license : MIT
77license-file : LICENSE
88author : Vyacheslav Hashov
99maintainer : vyacheslavhashov@gmail.com
@@ -23,12 +23,15 @@ library
2323 exposed-modules : System.Socket.Family.Unix
2424 other-modules : System.Socket.Family.Unix.Internal
2525 System.Socket.Family.Unix.Platform
26- build-depends : base >= 4.7 && < 5
27- , socket >= 0.8.0.0 && < 0.9.0.0
28- , bytestring >= 0.10.0.0 && < 0.11
26+ build-depends :
27+ base
28+ , socket
29+ , bytestring
2930
30- ghc-options : -Wall -O2
31- default-language : Haskell2010
31+ ghc-options :
32+ -Wall
33+ -O2
34+ default-language : GHC2021
3235
3336test-suite default
3437 type : exitcode-stdio-1.0
@@ -40,15 +43,16 @@ test-suite default
4043 main-is : test.hs
4144 other-modules : Internal
4245 Platform
43- build-depends : base >= 4.7 && < 5
44- , socket >= 0.8.0.0 && < 0.9.0.0
45- , socket-unix
46- , tasty >= 0.11 && < 0.12
47- , tasty-hunit >= 0.9 && < 0.10
48- , bytestring >= 0.10.0.0 && < 0.11
49- , unix >= 2.7 && < 3.0
50- , async >= 2.0 && < 2.3
51- default-language : Haskell2010
46+ build-depends :
47+ base
48+ , socket
49+ , socket-unix
50+ , tasty
51+ , tasty-hunit
52+ , bytestring
53+ , unix
54+ , async
55+ default-language : GHC2021
5256
5357test-suite threaded
5458 type : exitcode-stdio-1.0
@@ -60,16 +64,17 @@ test-suite threaded
6064 main-is : test.hs
6165 other-modules : Internal
6266 Platform
63- build-depends : base >= 4.7 && < 5
64- , socket >= 0.8.0.0 && < 0.9.0.0
65- , socket-unix
66- , tasty >= 0.11 && < 0.12
67- , tasty-hunit >= 0.9 && < 0.10
68- , bytestring >= 0.10.0.0 && < 0.11
69- , unix >= 2.7 && < 3.0
70- , async >= 2.0 && < 2.3
67+ build-depends :
68+ base
69+ , socket
70+ , socket-unix
71+ , tasty
72+ , tasty-hunit
73+ , bytestring
74+ , unix
75+ , async
7176 ghc-options : -threaded
72- default-language : Haskell2010
77+ default-language : GHC2021
7378
7479source-repository head
7580 type : git
0 commit comments