packages feed

pipes-network-tls-0.1.1.0: pipes-network-tls.cabal

name:               pipes-network-tls
version:            0.1.1.0
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2013
author:             Renzo Carbonara
maintainer:         renzocarbonaraλgmail.com
stability:          Experimental
tested-with:        GHC == 7.4.1
homepage:           https://github.com/k0001/pipes-network-tls
bug-reports:        https://github.com/k0001/pipes-network-tls/issues
category:           Pipes, Network
build-type:         Simple
synopsis:           TLS-secured network connections support for pipes.
cabal-version:      >=1.8
extra-source-files:
  README.md
  PEOPLE
  examples/tls-echo.hs
  examples/tls-tunnel.hs
description:
  Use TLS-secured network connections together with the @pipes@ ecosystem.
  .
  This package is organized using the following namespaces:
  .
  * "Control.Proxy.TCP.TLS" exports 'Control.Proxy.Proxy's and functions for
  establishing and using TLS-secured TCP connections.
  .
  * "Control.Proxy.TCP.TLS.Safe" is similar to "Control.Proxy.TCP.TLS", except
  the exported 'Control.Proxy.Proxy's themselves can obtain new TLS resources
  safely by using the facilities providied by the @pipes-safe@ package.
  .
  See the @NEWS@ file in the source distribution to learn about any
  important changes between version.

source-repository head
    type: git
    location: git://github.com/k0001/pipes-network-tls.git

library
    hs-source-dirs: src
    build-depends:
        base                (==4.*),
        bytestring          (>=0.9.2.1),
        network,
        network-simple-tls  (>=0.1.1 && <0.2),
        pipes               (>=3.3 && <3.4),
        pipes-safe          (>=1.2 && <1.3),
        pipes-network       (>=0.5.1 && <0.6),
        tls                 (>=1.1 && <1.2),
        transformers        (>=0.2 && <0.4)
    exposed-modules:
        Control.Proxy.TCP.TLS
        Control.Proxy.TCP.TLS.Safe
    ghc-options: -Wall -fno-warn-unused-do-bind