forked from vincenthz/hs-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection.cabal
44 lines (41 loc) · 1.45 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
Name: connection
Version: 0.1.3.1
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.6
Homepage: http://github.com/vincenthz/hs-connection
data-files: README.md
Flag test
Description: Build unit test
Default: False
Library
Build-Depends: base >= 3 && < 5
, bytestring
, containers
, data-default
, network >= 2.3
, tls >= 1.0 && < 1.2
, tls-extra >= 0.5 && < 0.7
, cprng-aes
, socks >= 0.4
, certificate >= 1.3.0 && < 1.4.0
Exposed-modules: Network.Connection
Other-modules: Network.Connection.Types
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/vincenthz/hs-connection