46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
|
Name: crypton-connection
|
||
|
Version: 0.3.2
|
||
|
x-revision: 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 <vincent@snarc.org>
|
||
|
Author: Vincent Hanquez <vincent@snarc.org>
|
||
|
Maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
|
||
|
Synopsis: Simple and easy network connections 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
|
||
|
, basement
|
||
|
, bytestring
|
||
|
, containers
|
||
|
, data-default-class
|
||
|
, network >= 2.6.3
|
||
|
, tls >= 1.7 && <2.1.0
|
||
|
, socks >= 0.6
|
||
|
, crypton-x509 >= 1.5
|
||
|
, crypton-x509-store >= 1.5
|
||
|
, crypton-x509-system >= 1.5
|
||
|
, crypton-x509-validation >= 1.5
|
||
|
Exposed-modules: Network.Connection
|
||
|
Other-modules: Network.Connection.Types
|
||
|
ghc-options: -Wall
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/kazu-yamamoto/crypton-connection
|