name: network-simple-tls version: 0.2.0 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: renzocarbonaraλgmail.com copyright: Copyright (c) Renzo Carbonara 2013 category: Network build-type: Simple cabal-version: >=1.8 extra-source-files: README.md PEOPLE 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 (>=0.9.2.1 && <0.11) , network (>=2.3 && <2.5) -- Packages not in The Haskell Platform , certificate (>=1.3 && <1.4) , cprng-aes (>=0.3 && <0.6) , exceptions (>=0.3 && <0.4) , network-simple (>=0.3 && <0.4) , tls (>=1.1.4 && <1.2) , tls-extra (>=0.6.5 && <0.7) , transformers (>=0.2 && <0.4) ghc-options: -Wall -O2 ghc-prof-options: -prof -fprof-auto-top