packages feed

network-simple-tls-0.3: network-simple-tls.cabal

name:                network-simple-tls
version:             0.3
synopsis:            Simple interface to TLS secured network sockets.
description:         Simple interface to TLS secured network sockets.
homepage:            https://github.com/k0001/network-simple-tls
bug-reports:         https://github.com/k0001/network-simple-tls/issues
license:             BSD3
license-file:        LICENSE
author:              Renzo Carbonara
maintainer:          renλren.zone
copyright:           Copyright (c) Renzo Carbonara 2013-2018
category:            Network
build-type:          Simple
cabal-version:       >=1.8
extra-source-files:  README.md PEOPLE changelog.md

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

library
  hs-source-dirs:    src
  exposed-modules:   Network.Simple.TCP.TLS
  build-depends:     base              (>=4.5     && <5.0)
                   , bytestring
                   , network
                   , exceptions
                   , network-simple
                   , tls
                   , transformers
                   , x509
                   , x509-system
                   , x509-store
                   , x509-validation
                   , data-default
  ghc-options:      -Wall -O2