packages feed

pipes-network-tls-0.2.1: pipes-network-tls.cabal

name:               pipes-network-tls
version:            0.2.1
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2013-2014
author:             Renzo Carbonara
maintainer:         renzocarbonaraλgmail.com
stability:          Experimental
tested-with:        GHC == 7.6.3
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:
  changelog
  README.md
  PEOPLE
  examples/tls-echo.hs
description:
  Use TLS-secured network connections together with the @pipes@ ecosystem.
  .
  This package is organized using the following namespaces:
  .
  * "Pipes.Network.TCP.TLS" exports pipes and utilities for using
  TLS-secured TCP connections in a streaming fashion.
  .
  * "Pipes.Network.TCP.TLS.Safe" subsumes "Pipes.Network.TCP.TLS",
  exporting pipes and functions that allow you to safely establish new
  TCP connections within a pipeline using the @pipes-safe@ facilities.
  You only need to use this module if you want to acquire and release
  operating system resources within a pipeline.
  .
  See the @changelog@ 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      (>=0.3   && <0.4),
        network-simple-tls  (>=0.2   && <0.3),
        pipes               (>=4.0   && <4.2),
        pipes-network       (>=0.6.2 && <0.7),
        pipes-safe          (>=2.0.2 && <2.1),
        tls                 (>=1.1 && <1.2),
        transformers        (>=0.2 && <0.4)
    exposed-modules:
        Pipes.Network.TCP.TLS
        Pipes.Network.TCP.TLS.Safe
    ghc-options: -Wall -O2