File: crypton-connection.cabal

package info (click to toggle)
haskell-crypton-connection 0.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 88 kB
  • sloc: haskell: 352; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,518 bytes parent folder | download
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
Name:                crypton-connection
Version:             0.4.5
Description:
    Simple network library for all your connection needs.
    .
    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 <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Kazu Yamamoto <kazu@iij.ad.jp>
Synopsis:            Simple and easy network connection API
Build-Type:          Simple
Category:            Network
stability:           experimental
Cabal-Version:       >=1.10
Homepage:            https://github.com/kazu-yamamoto/crypton-connection
extra-source-files:  README.md
                     CHANGELOG.md

Library
  Default-Language:  Haskell2010
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , containers
                   , data-default
                   , network >= 2.6.3
                   , tls >= 1.7 && < 2.2
                   , crypton-socks >= 0.6
                   , crypton-x509-store >= 1.5
                   , crypton-x509-system >= 1.5
  Exposed-modules:   Network.Connection
                     Network.Connection.Internal
  Other-modules:     Network.Connection.Types
  ghc-options:       -Wall

source-repository head
  type: git
  location: https://github.com/kazu-yamamoto/crypton-connection