forked from vincenthz/hs-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection.cabal
62 lines (58 loc) · 2.04 KB
/
connection.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Name: connection
Version: 0.2.8
Description:
Simple network library for all your connection need.
.
Features: Really simple to use, SSL/TLS, SOCKS.
.
This library provides a very simple api to create sockets
to a destination with the choice of SSL/TLS, and SOCKS.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <[email protected]>
Author: Vincent Hanquez <[email protected]>
Maintainer: Vincent Hanquez <[email protected]>
Synopsis: Simple and easy network connections API
Build-Type: Simple
Category: Network
stability: experimental
Cabal-Version: >= 1.10
Homepage: http://github.com/vincenthz/hs-connection
extra-source-files: README.md
CHANGELOG.md
Library
default-language: Haskell2010
Build-Depends: base >= 3 && < 5
, bytestring
, byteable
, containers
, data-default-class
, network >= 2.3
, tls >= 1.3
, socks >= 0.5.5
, x509 >= 1.5
, x509-store >= 1.5
, x509-system >= 1.5
, x509-validation >= 1.5
Exposed-modules: Network.Connection
Other-modules: Network.Connection.Types
ghc-options: -Wall
Executable stress-test
main-is: tests/stress-test.hs
default-language: Haskell2010
ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts "-T -N"
Build-Depends: base >= 3 && < 5
, async
, bytestring
, connection
, containers
, data-default-class
, network
, tls
, socks
, x509-store
, x509-system
, x509-validation
source-repository head
type: git
location: https://github.com/vincenthz/hs-connection